Changes for 1.6

This commit is contained in:
norimicry 2024-03-20 17:01:57 -04:00
parent 2d76548edf
commit 02ecbab19e
58 changed files with 857 additions and 125 deletions

6
configs/autoload.json Executable file → Normal file
View File

@ -1 +1,5 @@
{
"LastFileLoaded": "TestCoop_370636667",
"LoadIntoMultiplayer": true,
"ForgetLastFileOnTitle": true
}

View File

@ -14,7 +14,7 @@ services:
- ALWAYS_ON_SERVER_HOTKEY=${ALWAYS_ON_SERVER_HOTKEY-F9}
- ALWAYS_ON_SERVER_PROFIT_MARGIN=${ALWAYS_ON_SERVER_PROFIT_MARGIN-100}
- ALWAYS_ON_SERVER_UPGRADE_HOUSE=${ALWAYS_ON_SERVER_UPGRADE_HOUSE-0}
- ALWAYS_ON_SERVER_PET_NAME=${ALWAYS_ON_SERVER_PET_NAME-nya}
- ALWAYS_ON_SERVER_PET_NAME=${ALWAYS_ON_SERVER_PET_NAME-Rufus}
- ALWAYS_ON_SERVER_FARM_CAVE_CHOICE_MUSHROOMS=${ALWAYS_ON_SERVER_FARM_CAVE_CHOICE_MUSHROOMS-true}
- ALWAYS_ON_SERVER_COMMUNITY_CENTER_RUN=${ALWAYS_ON_SERVER_COMMUNITY_CENTER_RUN-true}
- ALWAYS_ON_SERVER_TIME_OF_DAY_TO_SLEEP=${ALWAYS_ON_SERVER_TIME_OF_DAY_TO_SLEEP-2200}
@ -41,15 +41,10 @@ services:
- ALWAYS_ON_SERVER_DANCE_OF_JELLIES_TIMEOUT=${ALWAYS_ON_SERVER_DANCE_OF_JELLIES_TIMEOUT-120}
- ALWAYS_ON_SERVER_FESTIVAL_OF_ICE_TIMEOUT=${ALWAYS_ON_SERVER_FESTIVAL_OF_ICE_TIMEOUT-120 }
## Unlimited Players mod
# Removing this will limit game players to 4
- ENABLE_UNLIMITEDPLAYERS_MOD=${ENABLE_UNLIMITEDPLAYERS_MOD-true}
- UNLIMITED_PLAYERS_PLAYER_LIMIT=${UNLIMITED_PLAYERS_PLAYER_LIMIT-10}
## Auto Load Game mod
# Removing this will mean you need to VNC in to manually start the game each boot
- ENABLE_AUTOLOADGAME_MOD=${ENABLE_AUTOLOADGAME-true}
- AUTO_LOAD_GAME_LAST_FILE_LOADED=${AUTO_LOAD_GAME_LAST_FILE_LOADED-null}
- AUTO_LOAD_GAME_LAST_FILE_LOADED=${AUTO_LOAD_GAME_LAST_FILE_LOADED-TestFarm_370629194}
- AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE=${AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE-true}
- AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER=${AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER-true}
@ -137,6 +132,6 @@ services:
# Saves go here now
- ./valley_saves:/config/xdg/config/StardewValley/Saves
# If you'd like to set an existing savegame before the first start otherwise this file will be edited when starting the first game
- ./configs/autoload.json:/data/Stardew/Stardew Valley/Mods/AutoLoadGame/config.json
- ./configs/autoload.json:/data/Stardew/Stardew Valley/game/Mods/AutoLoadGame/config.json

View File

@ -9,12 +9,12 @@ RUN apt-get install -y wget unzip tar strace mono-complete xterm gettext-base jq
RUN APP_ICON_URL=https://stardewcommunitywiki.com/mediawiki/images/4/48/Fiddlehead_Fern.png && \
install_app_icon.sh "$APP_ICON_URL"
# Game + ModLoader 1.5.6 3.18.2
# Game + ModLoader 1.6.1 4.0.1
RUN mkdir -p /data/Stardew && \
mkdir -p /data/nexus && \
wget https://eris.cc/Stardew_latest.tar.gz -qO /data/latest.tar.gz && \
tar xf /data/latest.tar.gz -C /data/Stardew && \
rm /data/latest.tar.gz
wget "https://www.dropbox.com/scl/fi/rqin9sb41c5dtsio5ohys/Stardew-Valley-1.6.zip?rlkey=mdkkiozw4g0pwy6jda61vrljo&" -qO /data/latest.zip && \
unzip /data/latest.zip -d /data/Stardew && \
rm /data/latest.zip
RUN wget -qO dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/6788a5a5-1879-4095-948d-72c7fbdf350f/c996151548ec9f24d553817db64c3577/dotnet-sdk-5.0.402-linux-x64.tar.gz \
#RUN wget -qO dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/95352809-7f41-40f3-974d-8d530321a8e4/0024d7bf0c872f176ceba7a63a34915b/dotnet-runtime-6.0.0-linux-musl-x64.tar.gz \
@ -22,16 +22,16 @@ RUN wget -qO dotnet.tar.gz https://download.visualstudio.microsoft.com/download/
&& rm dotnet.tar.gz \
&& ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet
RUN wget https://github.com/Pathoschild/SMAPI/releases/download/3.18.2/SMAPI-3.18.2-installer.zip -qO /data/nexus.zip && \
RUN wget "https://mediafilez.forgecdn.net/files/5196/995/SMAPI%204.0.1%204.0.1.zip" -qO /data/nexus.zip && \
unzip /data/nexus.zip -d /data/nexus/ && \
/bin/bash -c "SMAPI_NO_TERMINAL=true SMAPI_USE_CURRENT_SHELL=true echo -e \"2\n\n\" | /data/nexus/SMAPI\ 3.18.2\ installer/internal/linux/SMAPI.Installer --install --game-path \"/data/Stardew/Stardew Valley\"" || :
/bin/bash -c "SMAPI_NO_TERMINAL=true SMAPI_USE_CURRENT_SHELL=true echo -e \"2\n\n\" | /data/nexus/SMAPI\ 4.0.1\ installer/internal/linux/SMAPI.Installer --install --game-path \"/data/Stardew/Stardew Valley/game\"" || :
# Add Mods & Scripts
COPY ["mods/", "/data/Stardew/Stardew Valley/Mods/"]
COPY ["mods/", "/data/Stardew/Stardew Valley/game/Mods/"]
COPY scripts/ /opt/
RUN chmod +x /data/Stardew/Stardew\ Valley/StardewValley && \
RUN chmod +x /data/Stardew/Stardew\ Valley/game/StardewValley && \
chmod -R 777 /data/Stardew/ && \
chown -R 1000:1000 /data/Stardew && \
chmod +x /opt/*.sh

9
docker/docker-entrypoint.sh Executable file → Normal file
View File

@ -1,7 +1,7 @@
#!/bin/bash
export HOME=/config
for modPath in /data/Stardew/Stardew\ Valley/Mods/*/
for modPath in /data/Stardew/Stardew\ Valley/game/Mods/*/
do
mod=$(basename "$modPath")
@ -33,9 +33,10 @@ done
# Ready to start!
export XAUTHORITY=~/.Xauthority
TERM=
sed -i -e 's/env TERM=xterm $LAUNCHER "$@"$/env SHELL=\/bin\/bash TERM=xterm xterm -e "\/bin\/bash -c $LAUNCHER "$@""/' /data/Stardew/Stardew\ Valley/StardewValley
sed -i 's/env TERM=xterm $LAUNCHER "$@"/env SHELL=\/bin\/bash TERM=xterm xterm -e "\/bin\/bash -c $LAUNCHER \"$@\""/' /data/Stardew/Stardew\ Valley/game/Stardew\ Valley
bash -c "/data/Stardew/Stardew\ Valley/StardewValley"
# bash -c "/data/Stardew/Stardew\ Valley/game/Stardew\ Valley"
bash -c "/data/Stardew/Stardew\ Valley/start.sh"
sleep 233333333333333

View File

@ -0,0 +1 @@
0

View File

@ -0,0 +1 @@
GFP9KJ8QNPZ1

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
</configSections>
</configuration>

View File

@ -1,28 +1,28 @@
{
"serverHotKey": "${ALWAYS_ON_SERVER_HOTKEY}",
"profitmargin": ${ALWAYS_ON_SERVER_PROFIT_MARGIN},
"upgradeHouse": ${ALWAYS_ON_SERVER_UPGRADE_HOUSE},
"profitmargin": "${ALWAYS_ON_SERVER_PROFIT_MARGIN}",
"upgradeHouse": "${ALWAYS_ON_SERVER_UPGRADE_HOUSE}",
"petname": "${ALWAYS_ON_SERVER_PET_NAME}",
"farmcavechoicemushrooms": ${ALWAYS_ON_SERVER_FARM_CAVE_CHOICE_MUSHROOMS},
"communitycenterrun": ${ALWAYS_ON_SERVER_COMMUNITY_CENTER_RUN},
"timeOfDayToSleep": ${ALWAYS_ON_SERVER_TIME_OF_DAY_TO_SLEEP},
"lockPlayerChests": ${ALWAYS_ON_SERVER_LOCK_PLAYER_CHESTS},
"clientsCanPause": ${ALWAYS_ON_SERVER_CLIENTS_CAN_PAUSE},
"copyInviteCodeToClipboard": ${ALWAYS_ON_SERVER_COPY_INVITE_CODE_TO_CLIPBOARD},
"festivalsOn": ${ALWAYS_ON_SERVER_FESTIVALS_ON},
"eggHuntCountDownConfig": ${ALWAYS_ON_SERVER_EGG_HUNT_COUNT_DOWN},
"flowerDanceCountDownConfig": ${ALWAYS_ON_SERVER_FLOWER_DANCE_COUNT_DOWN},
"luauSoupCountDownConfig": ${ALWAYS_ON_SERVER_LUAU_SOUP_COUNT_DOWN},
"jellyDanceCountDownConfig": ${ALWAYS_ON_SERVER_JELLY_DANCE_COUNT_DOWN},
"grangeDisplayCountDownConfig": ${ALWAYS_ON_SERVER_GRANGE_DISPLAY_COUNT_DOWN},
"iceFishingCountDownConfig": ${ALWAYS_ON_SERVER_ICE_FISHING_COUNT_DOWN},
"endofdayTimeOut": ${ALWAYS_ON_SERVER_END_OF_DAY_TIMEOUT},
"fairTimeOut": ${ALWAYS_ON_SERVER_FAIR_TIMEOUT},
"spiritsEveTimeOut": ${ALWAYS_ON_SERVER_SPIRITS_EVE_TIMEOUT},
"winterStarTimeOut": ${ALWAYS_ON_SERVER_WINTER_STAR_TIMEOUT},
"eggFestivalTimeOut": ${ALWAYS_ON_SERVER_EGG_FESTIVAL_TIMEOUT},
"flowerDanceTimeOut": ${ALWAYS_ON_SERVER_FLOWER_DANCE_TIMEOUT},
"luauTimeOut": ${ALWAYS_ON_SERVER_LUAU_TIMEOUT},
"danceOfJelliesTimeOut": ${ALWAYS_ON_SERVER_DANCE_OF_JELLIES_TIMEOUT},
"festivalOfIceTimeOut": ${ALWAYS_ON_SERVER_FESTIVAL_OF_ICE_TIMEOUT}
}
"farmcavechoicemushrooms": "${ALWAYS_ON_SERVER_FARM_CAVE_CHOICE_MUSHROOMS}",
"communitycenterrun": "${ALWAYS_ON_SERVER_COMMUNITY_CENTER_RUN}",
"timeOfDayToSleep": "${ALWAYS_ON_SERVER_TIME_OF_DAY_TO_SLEEP}",
"lockPlayerChests": "${ALWAYS_ON_SERVER_LOCK_PLAYER_CHESTS}",
"clientsCanPause": "${ALWAYS_ON_SERVER_CLIENTS_CAN_PAUSE}",
"copyInviteCodeToClipboard": "${ALWAYS_ON_SERVER_COPY_INVITE_CODE_TO_CLIPBOARD}",
"festivalsOn": "${ALWAYS_ON_SERVER_FESTIVALS_ON}",
"eggHuntCountDownConfig": "${ALWAYS_ON_SERVER_EGG_HUNT_COUNT_DOWN}",
"flowerDanceCountDownConfig": "${ALWAYS_ON_SERVER_FLOWER_DANCE_COUNT_DOWN}",
"luauSoupCountDownConfig": "${ALWAYS_ON_SERVER_LUAU_SOUP_COUNT_DOWN}",
"jellyDanceCountDownConfig": "${ALWAYS_ON_SERVER_JELLY_DANCE_COUNT_DOWN}",
"grangeDisplayCountDownConfig": "${ALWAYS_ON_SERVER_GRANGE_DISPLAY_COUNT_DOWN}",
"iceFishingCountDownConfig": "${ALWAYS_ON_SERVER_ICE_FISHING_COUNT_DOWN}",
"endofdayTimeOut": "${ALWAYS_ON_SERVER_END_OF_DAY_TIMEOUT}",
"fairTimeOut": "${ALWAYS_ON_SERVER_FAIR_TIMEOUT}",
"spiritsEveTimeOut": "${ALWAYS_ON_SERVER_SPIRITS_EVE_TIMEOUT}",
"winterStarTimeOut": "${ALWAYS_ON_SERVER_WINTER_STAR_TIMEOUT}",
"eggFestivalTimeOut": "${ALWAYS_ON_SERVER_EGG_FESTIVAL_TIMEOUT}",
"flowerDanceTimeOut": "${ALWAYS_ON_SERVER_FLOWER_DANCE_TIMEOUT}",
"luauTimeOut": "${ALWAYS_ON_SERVER_LUAU_TIMEOUT}",
"danceOfJelliesTimeOut": "${ALWAYS_ON_SERVER_DANCE_OF_JELLIES_TIMEOUT}",
"festivalOfIceTimeOut": "${ALWAYS_ON_SERVER_FESTIVAL_OF_ICE_TIMEOUT}"
}

View File

@ -0,0 +1,7 @@
{
"FarmingLevel": 0,
"MiningLevel": 0,
"ForagingLevel": 0,
"FishingLevel": 0,
"CombatLevel": 0
}

View File

@ -1,9 +1,10 @@
{
"Name": "Always On Server",
"Author": "funny-snek & Zuberii",
"Version": "1.20.2-unofficial.2-elizo",
"Name": "Stardew Multiplayer Server",
"Author": "funny-snek & Zuberii & moy",
"Version": "1.6.0",
"Description": "A Headless server mod.",
"UniqueID": "funny-snek.Always_On_Server",
"EntryDll": "Always On Server.dll",
"UpdateKeys": [ "Nexus:2677" ]
"UniqueID": "moy.Always_On_Server",
"EntryDll": "Stardew-Multiplayer-Server.dll",
"MinimumApiVersion": "4.0",
"UpdateKeys": [ "" ]
}

View File

@ -1,5 +1,5 @@
{
"LastFileLoaded": "${AUTO_LOAD_GAME_LAST_FILE_LOADED}",
"LoadIntoMultiplayer": ${AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER},
"ForgetLastFileOnTitle": ${AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE}
"LoadIntoMultiplayer": "${AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER}",
"ForgetLastFileOnTitle": "${AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE}"
}

View File

@ -0,0 +1,111 @@
{
/**
* The tile types to use for back tile IDs which don't have a type property and aren't marked
* diggable. Indexed by tilesheet image source (without path or season) and type.
*/
"FallbackTileTypes": {
"beach": {
"Dirt": [
168,
304,
305,
321,
322
]
},
"outdoorsTileSheet": {
"Grass": [
152,
201,
204,
225,
228,
229,
230,
250,
251,
253,
254,
261,
275,
276,
277,
278,
279,
281,
286,
300,
306,
311,
331,
357,
400,
406,
407,
420,
421,
422,
423,
449,
567,
568,
569,
570,
592,
593,
594,
595,
619,
655,
679,
682,
683,
684,
705,
1092,
1093,
1094,
1095,
1096,
1119,
1120,
1121
],
"Dirt": [
153,
178,
202,
252,
433,
463,
474,
488,
513,
536,
538,
586,
590,
611,
613,
615,
617,
620,
630,
631,
632
],
"Stone": [
813,
947,
948,
949,
972,
973,
974,
998,
999
]
}
}
}

View File

@ -0,0 +1,10 @@
{
"Name": "Crops Anytime Anywhere",
"Author": "Pathoschild",
"Version": "1.4.8",
"MinimumApiVersion": "4.0.0",
"Description": "Lets you grow crops in any season and location (configurable).",
"UniqueID": "Pathoschild.CropsAnytimeAnywhere",
"EntryDll": "CropsAnytimeAnywhere.dll",
"UpdateKeys": [ "Nexus:3000" ]
}

View File

@ -1,15 +0,0 @@
{
"EnableInSeasons": {
"Spring": ${CROPS_ANYTIME_ANYWHERE_ENABLE_IN_SEASONS_SPRING},
"Summer": ${CROPS_ANYTIME_ANYWHERE_ENABLE_IN_SEASONS_SUMMER},
"Fall": ${CROPS_ANYTIME_ANYWHERE_ENABLE_IN_SEASONS_FALL},
"Winter": ${CROPS_ANYTIME_ANYWHERE_ENABLE_IN_SEASONS_WINTER}
},
"FarmAnyLocation": ${CROPS_ANYTIME_ANYWHERE_FARM_ANY_LOCATION},
"ForceTillable": {
"Dirt": ${CROPS_ANYTIME_ANYWHERE_FORCE_TILLABLE_DIRT},
"Grass": ${CROPS_ANYTIME_ANYWHERE_FORCE_TILLABLE_GRASS},
"Stone": ${CROPS_ANYTIME_ANYWHERE_FORCE_TILLABLE_STONE},
"Other": ${CROPS_ANYTIME_ANYWHERE_FORCE_TILLABLE_OTHER}
}
}

View File

@ -1,10 +0,0 @@
{
"Name": "Crops Anytime Anywhere",
"Author": "Pathoschild",
"Version": "1.1.0",
"MinimumApiVersion": "2.10.1",
"Description": "Lets you grow crops in any season and location (configurable).",
"UniqueID": "Pathoschild.CropsAnytimeAnywhere",
"EntryDll": "CropsAnytimeAnywhere.dll",
"UpdateKeys": [ "Nexus:3000" ]
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,72 @@
{
/*********
** In-game messages
*********/
// changed manually
"message.config-reloaded": "Die Zeit fühlt sich jetzt anders an...",
"message.speed-changed": "10 Minuten fühlen sich nun wie {{seconds}} Sekunden an.",
"message.time-stopped": "Hey, du hast die Zeit gestoppt!!",
"message.time-resumed": "Die Zeit fühlt sich wieder normal an...",
// changed based on time
"message.on-time-change.time-stopped": "Die Zeit bleibt plötzlich stehen...",
// changed based on location
"message.on-location-change.time-stopped-globally": "Sieht so aus, als wäre die Zeit überall stehen geblieben...",
"message.on-location-change.time-stopped-here": "Sieht so aus, als ob die Zeit hier stehen geblieben ist...",
"message.on-location-change.time-speed-here": "10 Minuten fühlen sich wie {{seconds}} Sekunden hier an...",
/*********
** Generic Mod Config Menu UI
*********/
// general options
"config.general-options": "Allgemeine Optionen",
"config.enable-on-festival-days.name": "Aktiviert an Festivaltagen",
"config.enable-on-festival-days.desc": "Ob die Zeit an Festivaltagen geändert werden soll.",
"config.location-notify.name": "Zeitinformationen bei Kartenwechsel",
"config.location-notify.desc": "Zeigt eine Nachricht welche Zeiteinstellungen auf der aktuellen Karte vorherrschen.",
// seconds per minute section
"config.seconds-per-minute": "Zeit Optionen",
"config.indoors-speed.name": "Drinnen",
"config.indoors-speed.desc": "Benötigte reale Sekunden pro Ingame Minute in Innenräumen.",
"config.outdoors-speed.name": "Draussen",
"config.outdoors-speed.desc": "Benötigte reale Sekunden pro Ingame Minute in Aussenräumen.",
"config.mine-speed.name": "Mine",
"config.mine-speed.desc": "Benötigte reale Sekunden pro Ingame Minute in der Mine.",
"config.skull-cavern-speed.name": "Schädelhöhle",
"config.skull-cavern-speed.desc": "Benötigte reale Sekunden pro Ingame Minute in der Schädelhöhle.",
"config.volcano-dungeon-speed.name": "Vulkan-Dungeon",
"config.volcano-dungeon-speed.desc": "Benötigte reale Sekunden pro Ingame Minute im Vulkan-Dungeon.",
// freeze time section
"config.freeze-time": "Zeit Einfrier Optionen",
"config.anywhere-at-time.name": "Zeit einfrieren bei",
"config.anywhere-at-time.desc": "Die Zeit, zu der die Zeit überall eingefroren werden soll. (6 Uhr morgens) 600 bis 2400 (Mitternacht) und 2600 (2 Uhr morgens). Du kannst es auf 2600 einstellen, um es zu deaktivieren.",
"config.freeze-time-indoors.name": "Drinnen",
"config.freeze-time-indoors.desc": "Ob die Zeit in Häusern eingefroren werden soll.",
"config.freeze-time-outdoors.name": "Draussen",
"config.freeze-time-outdoors.desc": "Ob die Zeit draussen eingefroren wird.",
"config.freeze-time-mine.name": "Mine",
"config.freeze-time-mine.desc": "Ob die Zeit in der Mine eingefroren wird.",
"config.freeze-time-skull-cavern.name": "Schädelhöhle",
"config.freeze-time-skull-cavern.desc": "Ob die Zeit in der Schädelhöhle eingefroren wird.",
"config.freeze-time-volcano-dungeon.name": "Vulkan-Dungeon",
"config.freeze-time-volcano-dungeon.desc": "Ob die Zeit im Vulkan-Dungeon eingefroren wird.",
"config.freeze-time-freeze-names.name": "Eigene Orte Zeit einfrieren",
"config.freeze-time-freeze-names.desc": "Die Namen bestimmter Orte, an denen die Zeit eingefroren werden soll. Standortnamen können im Spiel mit dem Debug-Modus-Mod angezeigt werden. Du kannst mehrere mit Kommas auflisten.",
"config.freeze-time-dont-freeze-names.name": "Bestimmte Orte Zeit nicht einfrieren",
"config.freeze-time-dont-freeze-names.desc": "Die Namen bestimmter Orte, an denen die Zeit nicht eingefroren werden soll, unabhängig von den vorherigen Einstellungen. Standortnamen können im Spiel mit dem Debug-Modus-Mod angezeigt werden. Du kannst mehrere mit Kommas auflisten.",
// controls
"config.controls": "Steuerungs Optionen",
"config.freeze-time-key.name": "Zeit einfrieren",
"config.freeze-time-key.desc": "Mit dieser Taste kann die Zeit angehalten und wieder angeschalten werden. Bei einem wechsel des Ortes, mit anderer Zeit Einstellung, wird die Zeit automatisch wieder eingeschalten. (z.b Farm->Mine)",
"config.slow-time-key.name": "Zeit verlangsamen",
"config.slow-time-key.desc": "Mit dieser Taste kann die Zeit verlangsamt werden. Strg + Taste für 100 Sekunden, Umschalt + Taste für 10 Sekunden, Nur Taste für 1 Sekunde oder Alt + Taste für 0.1 Sekunden.",
"config.speed-up-time-key.name": "Zeit beschleunigen",
"config.speed-up-time-key.desc": "Mit dieser Taste kann die Zeit beschleunigt werden. Strg + Taste für 100 Sekunden, Umschalt + Taste für 10 Sekunden, Nur Taste für 1 Sekunde oder Alt + Taste für 0.1 Sekunden.",
"config.reload-key.name": "Konfiguration neuladen",
"config.reload-key.desc": "Mit dieser Taste wird die Konfiguration sofort neu eingelesen. Die Zeit bleibt eingefroren, wenn sie per Taste eingefroren wurde."
}

View File

@ -0,0 +1,72 @@
{
/*********
** In-game messages
*********/
// changed manually
"message.config-reloaded": "Time feels differently now...",
"message.speed-changed": "10 minutes feels like {{seconds}} seconds.",
"message.time-stopped": "Hey, you stopped the time!",
"message.time-resumed": "Time feels as usual now...",
// changed based on time
"message.on-time-change.time-stopped": "Time suddenly stops...",
// changed based on location
"message.on-location-change.time-stopped-globally": "Looks like time stopped everywhere...",
"message.on-location-change.time-stopped-here": "It feels like time is frozen here...",
"message.on-location-change.time-speed-here": "10 minutes feels more like {{seconds}} seconds here...",
/*********
** Generic Mod Config Menu UI
*********/
// general options
"config.general-options": "General options",
"config.enable-on-festival-days.name": "Enable on festival days",
"config.enable-on-festival-days.desc": "Whether to change tick length on festival days.",
"config.location-notify.name": "Show time info on warp",
"config.location-notify.desc": "Whether to show a message about the time settings when you enter a location.",
// seconds per minute section
"config.seconds-per-minute": "Seconds per minute",
"config.indoors-speed.name": "Indoors",
"config.indoors-speed.desc": "The number of seconds per in-game minute while indoors.",
"config.outdoors-speed.name": "Outdoors",
"config.outdoors-speed.desc": "The number of seconds per in-game minute while outdoors.",
"config.mine-speed.name": "Mines",
"config.mine-speed.desc": "The number of seconds per in-game minute while in the mines.",
"config.skull-cavern-speed.name": "Skull Cavern",
"config.skull-cavern-speed.desc": "The number of seconds per in-game minute while in the Skull Cavern.",
"config.volcano-dungeon-speed.name": "Volcano Dungeon",
"config.volcano-dungeon-speed.desc": "The number of seconds per in-game minute while in the Volcano Dungeon.",
// freeze time section
"config.freeze-time": "Freeze time",
"config.anywhere-at-time.name": "Freeze time at",
"config.anywhere-at-time.desc": "The time at which to freeze time everywhere. This should be 24-hour military time, from 600 (6am) to 2400 (midnight) and 2600 (2am). You can set it to 2600 to disable it.",
"config.freeze-time-indoors.name": "Indoors",
"config.freeze-time-indoors.desc": "Whether to freeze time while indoors.",
"config.freeze-time-outdoors.name": "Outdoors",
"config.freeze-time-outdoors.desc": "Whether to freeze time while outdoors.",
"config.freeze-time-mine.name": "Mines",
"config.freeze-time-mine.desc": "Whether to freeze time while in the mines.",
"config.freeze-time-skull-cavern.name": "Skull Cavern",
"config.freeze-time-skull-cavern.desc": "Whether to freeze time while in the Skull Cavern.",
"config.freeze-time-volcano-dungeon.name": "Volcano Dungeon",
"config.freeze-time-volcano-dungeon.desc": "Whether to freeze time while in the Volcano Dungeon.",
"config.freeze-time-freeze-names.name": "Freeze location names",
"config.freeze-time-freeze-names.desc": "The names of specific locations in which to freeze time. Location names can be seen in-game using the Debug Mode mod. You can list multiple with commas.",
"config.freeze-time-dont-freeze-names.name": "Don't freeze location names",
"config.freeze-time-dont-freeze-names.desc": "The names of specific locations in which time shouldn't be frozen, regardless of the previous settings. Location names can be seen in-game using the Debug Mode mod. You can list multiple with commas.",
// controls
"config.controls": "Controls",
"config.freeze-time-key.name": "Freeze time",
"config.freeze-time-key.desc": "The key which freezes or unfreezes time. Freezing time will stay in effect until you unfreeze it; unfreezing time will stay in effect until you enter a new location with time settings.",
"config.slow-time-key.name": "Slow time",
"config.slow-time-key.desc": "The key which slows down time by one second per 10-game-minutes. Combine with Control for 100 seconds, Shift for 10 seconds, or Alt for 0.1 seconds.",
"config.speed-up-time-key.name": "Speed up time",
"config.speed-up-time-key.desc": "The key which speeds up time by one second per 10-game-minutes. Combine with Control for 100 seconds, Shift for 10 seconds, or Alt for 0.1 seconds.",
"config.reload-key.name": "Reload config",
"config.reload-key.desc": "The key which reloads all values from the config file and applies them immediately. Time will stay frozen if it was frozen via hotkey."
}

View File

@ -0,0 +1,72 @@
{
/*********
** In-game messages
*********/
// changed manually
"message.config-reloaded": "El tiempo pasa diferente ahora...",
"message.speed-changed": "10 minutos serán {{seconds}} segundos.",
"message.time-stopped": "¡Eh, has parado el tiempo!",
"message.time-resumed": "El tiempo pasa como de costumbre ahora...",
// changed based on time
"message.on-time-change.time-stopped": "El tiempo se detiene de repente...",
// changed based on location
"message.on-location-change.time-stopped-globally": "Parece que el tiempo se detuvo en todas partes...",
"message.on-location-change.time-stopped-here": "Parece que el tiempo está congelado aquí...",
"message.on-location-change.time-speed-here": "10 minutos serán {{seconds}} segundos aquí...",
/*********
** Generic Mod Config Menu UI
*********/
// general options
"config.general-options": "Opciones generales",
"config.enable-on-festival-days.name": "Habilitar en días de fiesta",
"config.enable-on-festival-days.desc": "Si se cambia la longitud de ticks en los días de fiesta.",
"config.location-notify.name": "Mostrar información sobre el tiempo en la urdimbre",
"config.location-notify.desc": "Si se muestra un mensaje sobre la configuración de la hora al entrar en una ubicación.",
// seconds per minute section
"config.seconds-per-minute": "Segundos por minuto",
"config.indoors-speed.name": "En interiores",
"config.indoors-speed.desc": "El número de segundos por minuto de juego en interiores.",
"config.outdoors-speed.name": "En exteriores",
"config.outdoors-speed.desc": "El número de segundos por minuto de juego en el exterior.",
"config.mine-speed.name": "Minas",
"config.mine-speed.desc": "El número de segundos por minuto de juego mientras se está en las minas.",
"config.skull-cavern-speed.name": "Caverna de la Calavera",
"config.skull-cavern-speed.desc": "El número de segundos por minuto de juego mientras estás en la Caverna de la Calavera.",
"config.volcano-dungeon-speed.name": "Mazmorra del Volcán",
"config.volcano-dungeon-speed.desc": "El número de segundos por minuto de juego mientras estás en la Mazmorra del Volcán.",
// freeze time section
"config.freeze-time": "Tiempo de congelación",
"config.anywhere-at-time.name": "Tiempo de congelación en",
"config.anywhere-at-time.desc": "La hora a la que se debe congelar el tiempo en todas partes. Debe ser la hora militar de 24 horas, desde las 600 (6am) hasta las 2400 (medianoche) y 2600 (2am). Puedes ponerlo en 2600 para desactivarlo.",
"config.freeze-time-indoors.name": "En interiores",
"config.freeze-time-indoors.desc": "Si congelar el tiempo en el interior.",
"config.freeze-time-outdoors.name": "En exteriores",
"config.freeze-time-outdoors.desc": "Si congelar el tiempo en el exterior.",
"config.freeze-time-mine.name": "Minas",
"config.freeze-time-mine.desc": "Si se congela el tiempo mientras se está en las minas.",
"config.freeze-time-skull-cavern.name": "Caverna de la Calavera",
"config.freeze-time-skull-cavern.desc": "Si se congela el tiempo mientras se está en la Caverna de la Calavera.",
"config.freeze-time-volcano-dungeon.name": "Mazmorra del Volcán",
"config.freeze-time-volcano-dungeon.desc": "Si se puede congelar el tiempo mientras se está en la mazmorra del volcán.",
"config.freeze-time-freeze-names.name": "Congelar lugares especificos",
"config.freeze-time-freeze-names.desc": "Los nombres de lugares específicos en los que congelar el tiempo. Los nombres de las localizaciones se pueden ver en el juego usando el mod del Modo Depuración. Se pueden enumerar varios con comas.",
"config.freeze-time-dont-freeze-names.name": "No congelar lugares especificos",
"config.freeze-time-dont-freeze-names.desc": "Los nombres de las localizaciones específicas en las que el tiempo no debe congelarse, independientemente de los ajustes anteriores. Los nombres de las localizaciones se pueden ver en el juego usando el mod del Modo Depuración. Se pueden enumerar varios con comas.",
// controls
"config.controls": "Controles",
"config.freeze-time-key.name": "Tiempo de congelamiento",
"config.freeze-time-key.desc": "La tecla que congela o descongela la hora. La congelación de la hora permanecerá en vigor hasta que la descongeles; la descongelación de la hora permanecerá en vigor hasta que introduzcas una nueva ubicación con ajustes de hora.",
"config.slow-time-key.name": "Ralentizar tiempo",
"config.slow-time-key.desc": "La tecla que ralentiza el tiempo un segundo por cada 10 minutos de juego. Combina con Control durante 100 segundos, Mayúsculas durante 10 segundos o Alt durante 0,1 segundos.",
"config.speed-up-time-key.name": "Acelerar tiempo",
"config.speed-up-time-key.desc": "La tecla que acelera el tiempo en un segundo por cada 10 minutos de juego. Combina con Control durante 100 segundos, Mayúsculas durante 10 segundos o Alt durante 0,1 segundos.",
"config.reload-key.name": "Recargar la configuración",
"config.reload-key.desc": "Ta tecla que recarga todos los valores del archivo de configuración y los aplica inmediatamente. El tiempo se mantendrá congelado si se congeló mediante la tecla de acceso directo."
}

View File

@ -0,0 +1,72 @@
{
/*********
** In-game messages
*********/
// changed manually
"message.config-reloaded": "Le temps s'écoule désormais autrement...",
"message.speed-changed": "10 minutes semblent se passer en {{seconds}} secondes.",
"message.time-stopped": "Hé, t'as arrêté le temps !",
"message.time-resumed": "Le temps reprend son cours...",
// changed based on time
"message.on-time-change.time-stopped": "Le temps s'arrête soudainement...",
// changed based on location
"message.on-location-change.time-stopped-globally": "Le temps semble arrêté partout...",
"message.on-location-change.time-stopped-here": "Le temps semble figé ici...",
"message.on-location-change.time-speed-here": "Ici, 10 minutes semblent se passer en {{seconds}} secondes.",
/*********
** Generic Mod Config Menu UI
*********/
// general options
"config.general-options": "Options générales",
"config.enable-on-festival-days.name": "Activer les jours de fête",
"config.enable-on-festival-days.desc": "Si l'écoulement du temps doit être modifiée les jours de fête.",
"config.location-notify.name": "Rappeler l'état sur transfert",
"config.location-notify.desc": "Si un message à propos des paramètres du temps doit être affiché lorsque tu arrives dans un nouvel endroit.",
// seconds per minute section
"config.seconds-per-minute": "Secondes par minute",
"config.indoors-speed.name": "À l'intérieur",
"config.indoors-speed.desc": "Le nombre de secondes par minute pour le jeu lorsqu'on est à l'intérieur.",
"config.outdoors-speed.name": "À l'extérieur",
"config.outdoors-speed.desc": "Le nombre de secondes par minute pour le jeu lorsqu'on est à l'extérieur.",
"config.mine-speed.name": "Mines",
"config.mine-speed.desc": "Le nombre de secondes par minute pour le jeu lorsqu'on est dans les mines.",
"config.skull-cavern-speed.name": "Caverne du crâne",
"config.skull-cavern-speed.desc": "Le nombre de secondes par minute pour le jeu lorsqu'on est dans la caverne du crâne.",
"config.volcano-dungeon-speed.name": "Donjon du volcan",
"config.volcano-dungeon-speed.desc": "Le nombre de secondes par minute pour le jeu lorsqu'on est dans le donjon du volcan.",
// freeze time section
"config.freeze-time": "Figer le temps",
"config.anywhere-at-time.name": "Figer le temps à",
"config.anywhere-at-time.desc": "L'heure à laquelle le temps sera figé partout. Exprimé en temps militaire au format 24 heures, de 600 (6h00) à 2400 (minuit) et 2600 (2h00). Assigner à 2600 pour désactiver.",
"config.freeze-time-indoors.name": "À l'intérieur",
"config.freeze-time-indoors.desc": "S'il faut figer le temps à l'intérieur.",
"config.freeze-time-outdoors.name": "À l'extérieur",
"config.freeze-time-outdoors.desc": "S'il faut figer le temps à l'extérieur.",
"config.freeze-time-mine.name": "Mines",
"config.freeze-time-mine.desc": "S'il faut figer le temps dans les mines.",
"config.freeze-time-skull-cavern.name": "Caverne du crâne",
"config.freeze-time-skull-cavern.desc": "S'il faut figer le temps dans la caverne du crâne.",
"config.freeze-time-volcano-dungeon.name": "Donjon du volcan",
"config.freeze-time-volcano-dungeon.desc": "S'il faut figer le temps dans le donjon du volcan.",
"config.freeze-time-freeze-names.name": "Nom des endroits figés",
"config.freeze-time-freeze-names.desc": "Les noms d'endroits où le temps devrait être figé. Les noms des endroits peuvent être consultés intrajeu en utilisant le mod Debug Mode. Plusieurs endroits peuvent être spécifiés en les séparant par des virgules.",
"config.freeze-time-dont-freeze-names.name": "Nom des endroits non figés",
"config.freeze-time-dont-freeze-names.desc": "Les noms d'endroits où le temps ne devrait pas être figé, en dépit des paramètres précédents. Les noms des endroits peuvent être consultés intrajeu en utilisant le mod Debug Mode. Plusieurs endroits peuvent être spécifiés en les séparant par des virgules.",
// controls
"config.controls": "Commandes",
"config.freeze-time-key.name": "Figer le temps",
"config.freeze-time-key.desc": "La touche qui fige ou défige le temps. Le figeage du temps restera en vigueur jusqu'à ce que tu le défiges. Le défigeage du temps restera en vigueur jusqu'à ce que tu arrives dans un nouvel endroit où l'écoulement du temps est paramétré.",
"config.slow-time-key.name": "Ralentir le temps",
"config.slow-time-key.desc": "La touche qui ralentit le temps d'une seconde pour 10 minutes dans le jeu. Combiner avec Ctrl pour 100 secondes, Maj pour 10 secondes, ou Alt pour 0,1 secondes.",
"config.speed-up-time-key.name": "Accélérer le temps",
"config.speed-up-time-key.desc": "La touche qui accélère le temps d'une seconde pour 10 minutes dans le jeu. Combiner avec Ctrl pour 100 secondes, Maj pour 10 secondes, ou Alt pour 0,1 secondes.",
"config.reload-key.name": "Recharger la configuration",
"config.reload-key.desc": "La touche qui recharge tous les paramètres depuis le fichier de configuration et qui les applique immédiatement. Le temps restera figé s'il était figé précédemment via le raccourci."
}

View File

@ -0,0 +1,72 @@
{
/*********
** In-game messages
*********/
// changed manually
"message.config-reloaded": "Ora il tempo è cambiato...",
"message.speed-changed": "10 minuti sembrano {{seconds}} secondi",
"message.time-stopped": "Hey, hai fermato il tempo!",
"message.time-resumed": "Ora Il tempo è come sempre...",
// changed based on time
"message.on-time-change.time-stopped": "Il tempo si ferma subito...",
// changed based on location
"message.on-location-change.time-stopped-globally": "Il tempo si è fermato dappertutto...",
"message.on-location-change.time-stopped-here": "Qui il tempo si è fermato...",
"message.on-location-change.time-speed-here": "Qui 10 minuti sembrano come {{secondi}} secondi...",
/*********
** Generic Mod Config Menu UI
*********/
// general options
"config.general-options": "Opzioni generali",
"config.enable-on-festival-days.name": "Attiva nei giorni dei festival",
"config.enable-on-festival-days.desc": "Per modificare il tempo nei giorni dei festival.",
"config.location-notify.name": "Mostra informazioni sul tempo sul portale",
"config.location-notify.desc": "Per visualizzare un messaggio sulle impostazioni del tempo quando si entra in una località.",
// seconds per minute section
"config.seconds-per-minute": "Secondi per minuti",
"config.indoors-speed.name": "Negli interni",
"config.indoors-speed.desc": "Il numero di secondi per minuto di gioco negli interni.",
"config.outdoors-speed.name": "Negli esterni",
"config.outdoors-speed.desc": "Il numero di secondi per minuto di gioco negli esterni.",
"config.mine-speed.name": "Miniere",
"config.mine-speed.desc": "Il numero di secondi per minuto di gioco nelle Miniere.",
"config.skull-cavern-speed.name": "Caverna del Teschio",
"config.skull-cavern-speed.desc": "Il numero di secondi per minuto di gioco nella Caverna del Teschio.",
"config.volcano-dungeon-speed.name": "Dungeon del vulcano",
"config.volcano-dungeon-speed.desc": "Il numero di secondi per minuto di gioco nel Dungeon del Vulcano.",
// freeze time section
"config.freeze-time": "Tempo congelato",
"config.anywhere-at-time.name": "Tempo congelato a",
"config.anywhere-at-time.desc": "Il tempo in cui congelare il tempo ovunque. Dovrebbe essere l'ora militare di 24 ore, da 600 (6 del mattino) a 2400 (mezzanotte) e 2600 (2 del mattino). È possibile impostarlo a 2600 per disabilitarlo. ",
"config.freeze-time-indoors.name": "Negli interni",
"config.freeze-time-indoors.desc": "Per congelare il tempo negli interni",
"config.freeze-time-outdoors.name": "Negli esterni",
"config.freeze-time-outdoors.desc": "Per congelare il tempo negli esterni",
"config.freeze-time-mine.name": "Miniere",
"config.freeze-time-mine.desc": "Per congelare il tempo nelle Miniere",
"config.freeze-time-skull-cavern.name": "Caverna del teschio",
"config.freeze-time-skull-cavern.desc": "Per congelare il tempo nella Caverna del teschio",
"config.freeze-time-volcano-dungeon.name": "Dungeon del vulcano",
"config.freeze-time-volcano-dungeon.desc": "Per congelare il tempo nel Dungeon del vulcano",
"config.freeze-time-freeze-names.name": "Congelare luoghi specifici",
"config.freeze-time-freeze-names.desc": "I nomi di luoghi specifici in cui congelare il tempo. I nomi dei luoghi possono essere visualizzati nel gioco utilizzando la modalità Debug. È possibile elencarli più volte con le virgole.",
"config.freeze-time-dont-freeze-names.name": "Non congelare i nomi delle località",
"config.freeze-time-dont-freeze-names.desc": "I nomi di luoghi specifici in cui il tempo non dovrebbe essere congelato, indipendentemente dalle impostazioni precedenti. I nomi delle località possono essere visualizzati nel gioco utilizzando la modalità Debug. È possibile elencarli più volte con le virgole.",
// controls
"config.controls": "Controlli",
"config.freeze-time-key.name": "Tempo congelato",
"config.freeze-time-key.desc": "È il tasto che congela o scongela il tempo. Il congelamento del tempo rimane valido fino a quando non lo si scongela; lo scongelamento del tempo rimane valido fino a quando non si inserisce una nuova località con le impostazioni di tempo.",
"config.slow-time-key.name": "Tempo rallentato",
"config.slow-time-key.desc": "Il tasto che rallenta il tempo di un secondo ogni 10 minuti di gioco. Si combina con Control per 100 secondi, Shift per 10 secondi o Alt per 0,1 secondi.",
"config.speed-up-time-key.name": "Tempo accelerato",
"config.speed-up-time-key.desc": "Il tasto che accelera il tempo di un secondo ogni 10 minuti di gioco. Si combina con Control per 100 secondi, Shift per 10 secondi o Alt per 0,1 secondi.",
"config.reload-key.name": "Ricarica configurazione",
"config.reload-key.desc": "Il tasto che ricarica tutti i valori dal file di configurazione e li applica immediatamente. Il tempo rimarrà congelato se è stato congelato tramite il tasto di scelta rapida."
}

View File

@ -0,0 +1,72 @@
{
/*********
** In-game messages
*********/
// changed manually
"message.config-reloaded": "지금은 시간이 다르게 느껴집니다.",
"message.speed-changed": "10분이 {{seconds}}초처럼 느껴집니다.",
"message.time-stopped": "시간을 멈췄습니다.",
"message.time-resumed": "이제 시간이 평소와 같이 느껴집니다.",
// changed based on time
"message.on-time-change.time-stopped": "시간이 갑자기 멈췄습니다.",
// changed based on location
"message.on-location-change.time-stopped-globally": "어디서든 시간이 멈춥니다.",
"message.on-location-change.time-stopped-here": "여기 시간이 멈췄습니다",
"message.on-location-change.time-speed-here": "여기서 10분이 {{seconds}}초처럼 느껴집니다.",
/*********
** Generic Mod Config Menu UI
*********/
// general options
"config.general-options": "일반 옵션",
"config.enable-on-festival-days.name": "축제일 활성화",
"config.enable-on-festival-days.desc": "축제일 틱 길이를 변경할지 여부.",
"config.location-notify.name": "워프에 시간 정보 표시",
"config.location-notify.desc": "위치를 입력할 때 시간 설정에 대한 메시지를 표시할지 여부.",
// seconds per minute section
"config.seconds-per-minute": "분당 초",
"config.indoors-speed.name": "실내",
"config.indoors-speed.desc": "실내에 있는 게임 내 분당 시간(초)입니다.",
"config.outdoors-speed.name": "야외",
"config.outdoors-speed.desc": "실외에서 게임 내 분당 시간(초)입니다.",
"config.mine-speed.name": "광산",
"config.mine-speed.desc": "광산에 있는 동안 게임 내 분당 시간(초)입니다.",
"config.skull-cavern-speed.name": "해골 동굴",
"config.skull-cavern-speed.desc": "해골 동굴에 있는 동안 게임 내 분당 시간(초)입니다.",
"config.volcano-dungeon-speed.name": "화산 던전",
"config.volcano-dungeon-speed.desc": "화산 던전에 있는 동안 게임 내 분당 시간(초)입니다.",
// freeze time section
"config.freeze-time": "정지 시간",
"config.anywhere-at-time.name": "시간 고정",
"config.anywhere-at-time.desc": "모든 곳에서 시간을 고정할 시간입니다. 이것은 600(오전 6시)에서 2400(자정) 및 2600(오전 2시)까지의 24시간 군사 시간이어야 합니다. 다음을 설정할 수 있습니다. 비활성화하려면 2600으로 설정하십시오.",
"config.freeze-time-indoors.name": "실내",
"config.freeze-time-indoors.desc": "실내에서 시간을 정지할지 여부.",
"config.freeze-time-outdoors.name": "야외",
"config.freeze-time-outdoors.desc": "야외에서 시간을 고정할지 여부.",
"config.freeze-time-mine.name": "광산",
"config.freeze-time-mine.desc": "광산에 있는 동안 시간을 고정할지 여부.",
"config.freeze-time-skull-cavern.name": "해골 동굴",
"config.freeze-time-skull-cavern.desc": "해골 동굴에 있는 동안 시간을 고정할지 여부.",
"config.freeze-time-volcano-dungeon.name": "화산 던전",
"config.freeze-time-volcano-dungeon.desc": "화산 던전에 있는 동안 시간을 정지할지 여부.",
"config.freeze-time-freeze-names.name": "위치 이름 고정",
"config.freeze-time-freeze-names.desc": "시간을 고정할 특정 위치의 이름입니다. 위치 이름은 디버그 모드 모드를 사용하여 게임 내에서 볼 수 있습니다. 여러 개를 쉼표로 나열할 수 있습니다.",
"config.freeze-time-dont-freeze-names.name": "위치 이름을 고정하지 않음",
"config.freeze-time-dont-freeze-names.desc": "이전 설정에 관계없이 시간이 고정되어서는 안 되는 특정 위치의 이름입니다. 위치 이름은 디버그 모드 모드를 사용하여 게임 내에서 볼 수 있습니다. 여러 개를 쉼표로 나열할 수 있습니다.",
// controls
"config.controls": "컨트롤",
"config.freeze-time-key.name": "정지 시간",
"config.freeze-time-key.desc": "시간을 고정하거나 고정 해제하는 키입니다. 고정 시간은 고정을 해제할 때까지 유효합니다. 고정 해제 시간은 시간 설정으로 새 위치를 입력할 때까지 유효합니다.",
"config.slow-time-key.name": "느린 시간",
"config.slow-time-key.desc": "게임 10분당 1 초씩 시간을 늦추는 키입니다. Control과 100초, Shift를 10초, Alt를 0.1초 동안 조합합니다.",
"config.speed-up-time-key.name": "시간 단축",
"config.speed-up-time-key.desc": "10게임 분당 1 초씩 시간을 단축 하는 키입니다. Control과 100초, Shift를 10초, Alt를 0.1초 동안 조합합니다.",
"config.reload-key.name": "구성 다시 로드",
"config.reload-key.desc": "구성 파일에서 모든 값을 다시 로드하고 즉시 적용하는 키입니다. 핫키를 통해 고정된 경우 시간이 고정된 상태로 유지됩니다."
}

View File

@ -0,0 +1,76 @@
{
/*********
** In-game messages
*********/
// changed manually
"message.config-reloaded": "O tempo parece diferente agora...",
"message.speed-changed": "10 minutos parecem como {{seconds}} segundos.",
"message.time-stopped": "Aí, você parou o tempo!",
"message.time-resumed": "O tempo parece normal agora...",
// changed based on time
"message.on-time-change.time-stopped": "O tempo súbitamente congela...",
// changed based on location
"message.on-location-change.time-stopped-globally": "Parece que você parou o tempo globalmente...",
"message.on-location-change.time-stopped-here": "Parece que o tempo está congelado aqui...",
"message.on-location-change.time-speed-here": "10 minutos parecem mais como {{seconds}} segundos aqui...",
/*********
** Generic Mod Config Menu UI
*********/
// general options
// TODO
"config.general-options": "General options",
"config.enable-on-festival-days.name": "Enable on festival days",
"config.enable-on-festival-days.desc": "Whether to change tick length on festival days.",
"config.location-notify.name": "Show time info on warp",
"config.location-notify.desc": "Whether to show a message about the time settings when you enter a location.",
// seconds per minute section
// TODO
"config.seconds-per-minute": "Seconds per minute",
"config.indoors-speed.name": "Indoors",
"config.indoors-speed.desc": "The number of seconds per in-game minute while indoors.",
"config.outdoors-speed.name": "Outdoors",
"config.outdoors-speed.desc": "The number of seconds per in-game minute while outdoors.",
"config.mine-speed.name": "Mines",
"config.mine-speed.desc": "The number of seconds per in-game minute while in the mines.",
"config.skull-cavern-speed.name": "Skull Cavern",
"config.skull-cavern-speed.desc": "The number of seconds per in-game minute while in the Skull Cavern.",
"config.volcano-dungeon-speed.name": "Volcano Dungeon",
"config.volcano-dungeon-speed.desc": "The number of seconds per in-game minute while in the Volcano Dungeon.",
// freeze time section
// TODO
"config.freeze-time": "Freeze time",
"config.anywhere-at-time.name": "Freeze time at",
"config.anywhere-at-time.desc": "The time at which to freeze time everywhere. This should be 24-hour military time, from 600 (6am) to 2400 (midnight) and 2600 (2am). You can set it to 2600 to disable it.",
"config.freeze-time-indoors.name": "Indoors",
"config.freeze-time-indoors.desc": "Whether to freeze time while indoors.",
"config.freeze-time-outdoors.name": "Outdoors",
"config.freeze-time-outdoors.desc": "Whether to freeze time while outdoors.",
"config.freeze-time-mine.name": "Mines",
"config.freeze-time-mine.desc": "Whether to freeze time while in the mines.",
"config.freeze-time-skull-cavern.name": "Skull Cavern",
"config.freeze-time-skull-cavern.desc": "Whether to freeze time while in the Skull Cavern.",
"config.freeze-time-volcano-dungeon.name": "Volcano Dungeon",
"config.freeze-time-volcano-dungeon.desc": "Whether to freeze time while in the Volcano Dungeon.",
"config.freeze-time-freeze-names.name": "Freeze location names",
"config.freeze-time-freeze-names.desc": "The names of specific locations in which to freeze time. Location names can be seen in-game using the Debug Mode mod. You can list multiple with commas.",
"config.freeze-time-dont-freeze-names.name": "Don't freeze location names",
"config.freeze-time-dont-freeze-names.desc": "The names of specific locations in which time shouldn't be frozen, regardless of the previous settings. Location names can be seen in-game using the Debug Mode mod. You can list multiple with commas.",
// controls
// TODO
"config.controls": "Controls",
"config.freeze-time-key.name": "Freeze time",
"config.freeze-time-key.desc": "The key which freezes or unfreezes time. Freezing time will stay in effect until you unfreeze it; unfreezing time will stay in effect until you enter a new location with time settings.",
"config.slow-time-key.name": "Slow time",
"config.slow-time-key.desc": "The key which slows down time by one second per 10-game-minutes. Combine with Control for 100 seconds, Shift for 10 seconds, or Alt for 0.1 seconds.",
"config.speed-up-time-key.name": "Speed up time",
"config.speed-up-time-key.desc": "The key which speeds up time by one second per 10-game-minutes. Combine with Control for 100 seconds, Shift for 10 seconds, or Alt for 0.1 seconds.",
"config.reload-key.name": "Reload config",
"config.reload-key.desc": "The key which reloads all values from the config file and applies them immediately. Time will stay frozen if it was frozen via hotkey."
}

View File

@ -0,0 +1,72 @@
{
/*********
** In-game messages
*********/
// changed manually
"message.config-reloaded": "Теперь время идёт по другому...",
"message.speed-changed": "10 минут ощущаються как {{seconds}} сек.",
"message.time-stopped": "Ты остановил время!",
"message.time-resumed": "Теперь время ощущается нормально...",
// changed based on time
"message.on-time-change.time-stopped": "Внезапно, время остановилось...",
// changed based on location
"message.on-location-change.time-stopped-globally": "Время остановилось везде...",
"message.on-location-change.time-stopped-here": "Время здесь застыло...",
"message.on-location-change.time-speed-here": "Здесь 10 минут ощущаются как {{seconds}} сек...",
/*********
** Generic Mod Config Menu UI
*********/
// general options
"config.general-options": "Основные опции",
"config.enable-on-festival-days.name": "Вкл. во время праздников",
"config.enable-on-festival-days.desc": "Изменять ли длину тиков в праздничные дни.",
"config.location-notify.name": "Показывать скорость времени",
"config.location-notify.desc": "Если включить, то при переходе на другую локацию будут отображены настройки времени в этой локации",
// seconds per minute section
"config.seconds-per-minute": "Секунд за минуту",
"config.indoors-speed.name": "В помещениях",
"config.indoors-speed.desc": "Количество секунд в одной игровой минуте в помещениях.",
"config.outdoors-speed.name": "На улице",
"config.outdoors-speed.desc": "Количество секунд в одной игровой минуте на улице.",
"config.mine-speed.name": "В шахте",
"config.mine-speed.desc": "Количество секунд в одной игровой минуте в шахте.",
"config.skull-cavern-speed.name": "Пещера Черепа",
"config.skull-cavern-speed.desc": "Количество секунд в одной игровой минуте в Пещера Черепа.",
"config.volcano-dungeon-speed.name": "Вулканическое подземелье",
"config.volcano-dungeon-speed.desc": "Количество секунд в одной игровой минуте в Вулканическом подземелье.",
// freeze time section
"config.freeze-time": "Остановка времени",
"config.anywhere-at-time.name": "Останавливать время в",
"config.anywhere-at-time.desc": "Момент времени, когда оно полностью остановится. 600 - 6:00 (6 утра), 2400 - 00:00 (полночь) и 2600 (2 часа ночи). Если установить значение 2600, эта опция будет отключена.",
"config.freeze-time-indoors.name": "В помещениях",
"config.freeze-time-indoors.desc": "Эта опция полностью остановит время внитри помещений.",
"config.freeze-time-outdoors.name": "На улице",
"config.freeze-time-outdoors.desc": "Эта опция полностью остановит время на улице.",
"config.freeze-time-mine.name": "В шахте",
"config.freeze-time-mine.desc": "Эта опция полностью остановит время в шахте.",
"config.freeze-time-skull-cavern.name": "Пещера Черепа",
"config.freeze-time-skull-cavern.desc": "Эта опция полностью остановит время в Пещере Черепа.",
"config.freeze-time-volcano-dungeon.name": "Вулканическое подземелье",
"config.freeze-time-volcano-dungeon.desc": "Эта опция полностью остановит время в Вулканическом подземелье.",
"config.freeze-time-freeze-names.name": "Заморозить время в",
"config.freeze-time-freeze-names.desc": "Названия конкретных локаций, в которых время будет заморожено. Названия локаций можно увидеть в игре с помощью мода \"Debug Mode\". Вы можете перечислить несколько через запятую.",
"config.freeze-time-dont-freeze-names.name": "Не замораживать время в",
"config.freeze-time-dont-freeze-names.desc": "Названия конкретных локаций, в которых время не будет заморожено, вне зависимости от предыдущих настроек. Названия локаций можно увидеть в игре с помощью мода \"Debug Mode\". Вы можете перечислить несколько через запятую.",
// controls
"config.controls": "Управление",
"config.freeze-time-key.name": "Остановить время",
"config.freeze-time-key.desc": "Эта клавиша будет останавливать и продолжать течение времени. Остановленное время будет таким пока вы не нажмёте клавишу снова; обычное течение времени может быть прервано в зависимости от настроек.",
"config.slow-time-key.name": "Замедлить время",
"config.slow-time-key.desc": "Клавиша(по умолчанию - . ), которая будет замедлять время, на 1 секунду за 10 игровых минут. Комбинируя с клавишей Ctrl - 100 секунд, Shift - 10 секунд или Alt - 0.1 секунд (100 миллисекунд).",
"config.speed-up-time-key.name": "Ускорить время",
"config.speed-up-time-key.desc": "Клавиша(по умолчанию - , ), которая будет ускорять время, на 1 секунду за 10 игровых минут. Комбинируя с клавишей Ctrl - 100 секунд, Shift - 10 секунд или Alt - 0.1 секунд (100 миллисекунд).",
"config.reload-key.name": "Перезагрузить настройки",
"config.reload-key.desc": "Клавиша, которая перезагружает все значения из config.json и сразу же их применяет. Если время было остановлено клавишей, оно останется остановленным."
}

View File

@ -0,0 +1,72 @@
{
/*********
** In-game messages
*********/
// changed manually
"message.config-reloaded": "时间流动变得不同了...",
"message.speed-changed": "10分钟感觉就像 {{seconds}} 秒。",
"message.time-stopped": "嘿,你冻结了时间!",
"message.time-resumed": "时间像往常一样重新流动...",
// changed based on time
"message.on-time-change.time-stopped": "时间突然停止...",
// changed based on location
"message.on-location-change.time-stopped-globally": "无论在哪时间都停止...",
"message.on-location-change.time-stopped-here": "在这里时间似乎停止了...",
"message.on-location-change.time-speed-here": "这里10分钟感觉就像{{seconds}} 秒钟...",
/*********
** Generic Mod Config Menu UI
*********/
// general options
"config.general-options": "通常设置",
"config.enable-on-festival-days.name": "节日当天启用",
"config.enable-on-festival-days.desc": "节日时修改时间长短",
"config.location-notify.name": "显示时间信息",
"config.location-notify.desc": "是否在进入不同区域时显示时间相关信息",
// seconds per minute section
"config.seconds-per-minute": "分钟拆分为秒数",
"config.indoors-speed.name": "建筑内",
"config.indoors-speed.desc": "建筑里一分钟有多少秒",
"config.outdoors-speed.name": "室外",
"config.outdoors-speed.desc": "室外一分钟有多少秒",
"config.mine-speed.name": "矿洞",
"config.mine-speed.desc": "矿洞里一分钟有多少秒",
"config.skull-cavern-speed.name": "头骨矿洞",
"config.skull-cavern-speed.desc": "头骨矿洞里一分钟有多少秒",
"config.volcano-dungeon-speed.name": "火山地牢",
"config.volcano-dungeon-speed.desc": "火山地牢里一分钟有多少秒",
// freeze time section
"config.freeze-time": "冻结时间",
"config.anywhere-at-time.name": "什么时候冻结",
"config.anywhere-at-time.desc": "设置自动冻结全地图时间的时间节点600表示早上6点2400表示凌晨2点默认2400表示禁用。",
"config.freeze-time-indoors.name": "建筑内",
"config.freeze-time-indoors.desc": "建筑内时是否冻结时间",
"config.freeze-time-outdoors.name": "室外",
"config.freeze-time-outdoors.desc": "在室外是否冻结时间",
"config.freeze-time-mine.name": "矿洞",
"config.freeze-time-mine.desc": "在矿洞时冻结时间",
"config.freeze-time-skull-cavern.name": "头骨矿洞",
"config.freeze-time-skull-cavern.desc": "头骨矿洞里是否冻结时间",
"config.freeze-time-volcano-dungeon.name": "火山地牢",
"config.freeze-time-volcano-dungeon.desc": "火山地牢里是否冻结时间",
"config.freeze-time-freeze-names.name": "自定义冻结地点",
"config.freeze-time-freeze-names.desc": "自定义添加冻结时间的地点可以添加多个用逗号隔开下载尾号679的mod在游戏内查看地点名称。",
"config.freeze-time-dont-freeze-names.name": "自定义不冻结地点",
"config.freeze-time-dont-freeze-names.desc": "自定义添加不冻结时间的地点可以添加多个用逗号隔开下载尾号679的mod在游戏内查看地点名称。",
// controls
"config.controls": "控制键",
"config.freeze-time-key.name": "冻结时间",
"config.freeze-time-key.desc": "设置冻结时间快捷键,按一次永久冻结时间,不受其他设置影响。再按一次会取消冻结,此时可能会受到前面设置过的冻结时间区域的影响(如建筑内冻结等),即进入设置过冻结时间的区域会再次冻结时间。",
"config.slow-time-key.name": "放慢时间快捷键",
"config.slow-time-key.desc": "按下快捷键,让游戏时间每十分钟慢上一秒,快捷键+CTRL慢100秒+shift慢10秒+Alt慢0.1秒。",
"config.speed-up-time-key.name": "加快时间",
"config.speed-up-time-key.desc": "加快时间流转快捷键,让游戏时间每十分钟快上一秒,快捷键+CTRL快100秒+shift快10秒+Alt快0.1秒。",
"config.reload-key.name": "恢复默认设置",
"config.reload-key.desc": "恢复所有设置的快捷键。"
}

View File

@ -0,0 +1,10 @@
{
"Name": "TimeSpeed",
"Author": "cantorsdust and Pathoschild",
"Version": "2.7.7",
"Description": "Lets you control the flow of time in the game: speed it up, slow it down, or freeze it altogether.",
"UniqueID": "cantorsdust.TimeSpeed",
"EntryDll": "TimeSpeed.dll",
"MinimumApiVersion": "4.0.0",
"UpdateKeys": [ "Nexus:169" ]
}

View File

@ -1,19 +0,0 @@
{
"DefaultTickLength": ${TIME_SPEED_DEFAULT_TICK_LENGTH},
"TickLengthByLocation": {
"Indoors": ${TIME_SPEED_TICK_LENGTH_BY_LOCATION_INDOORS},
"Outdoors": ${TIME_SPEED_TICK_LENGTH_BY_LOCATION_OUTDOORS},
"Mine": ${TIME_SPEED_TICK_LENGTH_BY_LOCATION_MINE}
},
"EnableOnFestivalDays": ${TIME_SPEED_ENABLE_ON_FESTIVAL_DAYS},
"FreezeTimeAt": ${TIME_SPEED_FREEZE_TIME_AT},
"LocationNotify": ${TIME_SPEED_LOCATION_NOTIFY},
"Keys": {
"FreezeTime": "${TIME_SPEED_KEYS_FREEZE_TIME}",
"IncreaseTickInterval": "${TIME_SPEED_KEYS_INCREASE_TICK_INTERVAL}",
"DecreaseTickInterval": "${TIME_SPEED_KEYS_DECREASE_TICK_INTERVAL}",
"ReloadConfig": "${TIME_SPEED_KEYS_RELOAD_CONFIG}"
}
}

View File

@ -1,10 +0,0 @@
{
"Name": "TimeSpeed",
"Author": "cantorsdust",
"Version": "2.4.3",
"Description": "Lets you control the flow of time in the game: speed it up, slow it down, or freeze it altogether.",
"UniqueID": "cantorsdust.TimeSpeed",
"EntryDll": "TimeSpeed.dll",
"MinimumApiVersion": "3.0.0",
"UpdateKeys": [ "Nexus:169" ]
}

View File

@ -1,3 +0,0 @@
{
"PlayerLimit": ${UNLIMITED_PLAYERS_PLAYER_LIMIT}
}

View File

@ -1,9 +0,0 @@
{
"Author": "Armitxes",
"Description": "Remove the maximum player restrictions, build endless cabins.",
"Name": "Armi's Unlimited Players",
"EntryDll": "UnlimitedPlayers.dll",
"UniqueID": "Armitxes.UnlimitedPlayers",
"UpdateKeys": [ "GitHub:Armitxes/StardewValley_UnlimitedPlayers" ],
"Version": "2020.2.15"
}

View File

@ -1,5 +1,5 @@
#!/bin/sh
if [ -z "`cat /data/Stardew/Stardew\ Valley/Mods/AutoLoadGame/config.json`" ] ; then
chmod 777 /data/Stardew/Stardew\ Valley/Mods/AutoLoadGame/config.json;
if [ -z "`cat /data/Stardew/Stardew\ Valley/game/Mods/AutoLoadGame/config.json`" ] ; then
chmod 777 /data/Stardew/Stardew\ Valley/game/Mods/AutoLoadGame/config.json;
fi

View File

@ -1,10 +1,10 @@
#!/bin/sh
# Quit if we don't have any default admins
if [ -z "${REMOTE_CONTROL_DEFAULT_ADMINS}" ] || [ ! -f "/data/Stardew/Stardew Valley/Mods/RemoteControl/config.json" ]; then
if [ -z "${REMOTE_CONTROL_DEFAULT_ADMINS}" ] || [ ! -f "/data/Stardew/Stardew Valley/game/Mods/RemoteControl/config.json" ]; then
return
fi
# Add default admins to the admin list
jq ".admins[.admins | length] |= . + ${REMOTE_CONTROL_DEFAULT_ADMINS}" "/data/Stardew/Stardew Valley/Mods/RemoteControl/config.json" > "/data/Stardew/Stardew Valley/Mods/RemoteControl/config.json.out"
mv -f "/data/Stardew/Stardew Valley/Mods/RemoteControl/config.json.out" "/data/Stardew/Stardew Valley/Mods/RemoteControl/config.json"
jq ".admins[.admins | length] |= . + ${REMOTE_CONTROL_DEFAULT_ADMINS}" "/data/Stardew/Stardew Valley/game/Mods/RemoteControl/config.json" > "/data/Stardew/Stardew Valley/game/Mods/RemoteControl/config.json.out"
mv -f "/data/Stardew/Stardew Valley/game/Mods/RemoteControl/config.json.out" "/data/Stardew/Stardew Valley/game/Mods/RemoteControl/config.json"

0
roles/nickjj.docker/.gitignore vendored Executable file → Normal file
View File

0
roles/nickjj.docker/.travis.yml Executable file → Normal file
View File

0
roles/nickjj.docker/CHANGELOG.md Executable file → Normal file
View File

0
roles/nickjj.docker/LICENSE Executable file → Normal file
View File

0
roles/nickjj.docker/README.md Executable file → Normal file
View File

0
roles/nickjj.docker/defaults/main.yml Executable file → Normal file
View File

0
roles/nickjj.docker/handlers/main.yml Executable file → Normal file
View File

0
roles/nickjj.docker/meta/main.yml Executable file → Normal file
View File

0
roles/nickjj.docker/tasks/main.yml Executable file → Normal file
View File

View File

View File

0
roles/nickjj.docker/tests/.yamllint.yml Executable file → Normal file
View File

0
roles/nickjj.docker/tests/test.yml Executable file → Normal file
View File

0
terra.sh Executable file → Normal file
View File