forked from OpenWF/SpaceNinjaServer
feat: wolf hunt 2019 (#2888)
Re #1103 Reviewed-on: OpenWF/SpaceNinjaServer#2888 Reviewed-by: Sainan <63328889+sainan@users.noreply.github.com> Co-authored-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com> Co-committed-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>
This commit is contained in:
parent
02f0935710
commit
9e66d22256
@ -31,7 +31,7 @@
|
|||||||
"baroAlwaysAvailable": false,
|
"baroAlwaysAvailable": false,
|
||||||
"baroFullyStocked": false,
|
"baroFullyStocked": false,
|
||||||
"varziaFullyStocked": false,
|
"varziaFullyStocked": false,
|
||||||
"wolfHunt": false,
|
"wolfHunt": null,
|
||||||
"orphixVenom": false,
|
"orphixVenom": false,
|
||||||
"longShadow": false,
|
"longShadow": false,
|
||||||
"hallowedFlame": false,
|
"hallowedFlame": false,
|
||||||
|
|||||||
@ -41,7 +41,7 @@ export interface IConfig {
|
|||||||
baroAlwaysAvailable?: boolean;
|
baroAlwaysAvailable?: boolean;
|
||||||
baroFullyStocked?: boolean;
|
baroFullyStocked?: boolean;
|
||||||
varziaFullyStocked?: boolean;
|
varziaFullyStocked?: boolean;
|
||||||
wolfHunt?: boolean;
|
wolfHunt?: number;
|
||||||
orphixVenom?: boolean;
|
orphixVenom?: boolean;
|
||||||
longShadow?: boolean;
|
longShadow?: boolean;
|
||||||
hallowedFlame?: boolean;
|
hallowedFlame?: boolean;
|
||||||
|
|||||||
@ -2479,6 +2479,18 @@ const goalMessagesByKey: Record<string, { sndr: string; msg: string; sub: string
|
|||||||
sub: "/Lotus/Language/Inbox/WaterFightRewardSubjectD",
|
sub: "/Lotus/Language/Inbox/WaterFightRewardSubjectD",
|
||||||
icon: "/Lotus/Interface/Icons/Npcs/Grineer/KelaDeThaym.png"
|
icon: "/Lotus/Interface/Icons/Npcs/Grineer/KelaDeThaym.png"
|
||||||
},
|
},
|
||||||
|
"/Lotus/Types/Keys/WolfTacAlertA": {
|
||||||
|
sndr: "/Lotus/Language/Bosses/NoraNight",
|
||||||
|
msg: "/Lotus/Language/Inbox/WolfTacAlertBody",
|
||||||
|
sub: "/Lotus/Language/Inbox/WolfTacAlertTitle",
|
||||||
|
icon: "/Lotus/Interface/Icons/Npcs/Seasonal/NoraNight.png"
|
||||||
|
},
|
||||||
|
"/Lotus/Types/Keys/WolfTacAlertxB": {
|
||||||
|
sndr: "/Lotus/Language/Bosses/NoraNight",
|
||||||
|
msg: "/Lotus/Language/Inbox/WolfTacAlertHardBody",
|
||||||
|
sub: "/Lotus/Language/Inbox/WolfTacAlertHardTitle",
|
||||||
|
icon: "/Lotus/Interface/Icons/Npcs/Seasonal/NoraNight.png"
|
||||||
|
},
|
||||||
"/Lotus/Types/Keys/WolfTacAlertReduxA": {
|
"/Lotus/Types/Keys/WolfTacAlertReduxA": {
|
||||||
sndr: "/Lotus/Language/Bosses/NoraNight",
|
sndr: "/Lotus/Language/Bosses/NoraNight",
|
||||||
msg: "/Lotus/Language/Inbox/WolfTacAlertBody",
|
msg: "/Lotus/Language/Inbox/WolfTacAlertBody",
|
||||||
|
|||||||
@ -1747,7 +1747,7 @@ export const getWorldState = (buildLabel?: string): IWorldState => {
|
|||||||
Personal: true,
|
Personal: true,
|
||||||
Bounty: true,
|
Bounty: true,
|
||||||
ClampNodeScores: true,
|
ClampNodeScores: true,
|
||||||
Node: "EventNode28", // Incompatible with Wolf Hunt (2025), Orphix Venom, Warframe Anniversary
|
Node: "EventNode28", // Incompatible with Wolf Hunt, Orphix Venom, Warframe Anniversary
|
||||||
MissionKeyName: "/Lotus/Types/Keys/GalleonRobberyAlertB",
|
MissionKeyName: "/Lotus/Types/Keys/GalleonRobberyAlertB",
|
||||||
Desc: "/Lotus/Language/Events/GalleonRobberyEventMissionTitle",
|
Desc: "/Lotus/Language/Events/GalleonRobberyEventMissionTitle",
|
||||||
Icon: "/Lotus/Interface/Icons/Player/GalleonRobberiesEvent.png",
|
Icon: "/Lotus/Interface/Icons/Player/GalleonRobberiesEvent.png",
|
||||||
@ -2144,7 +2144,7 @@ export const getWorldState = (buildLabel?: string): IWorldState => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (config.worldState?.anniversary != undefined) {
|
if (config.worldState?.anniversary != undefined) {
|
||||||
// Incompatible with: Use Tag from Warframe Anniversary for old Events, Wolf Hunt (2025), Galleon Of Ghouls, Hallowed Flame, Hallowed Nightmares, Dog Days, Proxy Rebellion, Long Shadow
|
// Incompatible with: Use Tag from Warframe Anniversary for old Events, Wolf Hunt, Galleon Of Ghouls, Hallowed Flame, Hallowed Nightmares, Dog Days, Proxy Rebellion, Long Shadow
|
||||||
const goalsByWeek: Partial<IGoal>[][] = [
|
const goalsByWeek: Partial<IGoal>[][] = [
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
@ -2363,65 +2363,108 @@ export const getWorldState = (buildLabel?: string): IWorldState => {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (config.worldState?.wolfHunt) {
|
if (config.worldState?.wolfHunt != undefined) {
|
||||||
worldState.Goals.push({
|
if (config.worldState.wolfHunt == 0) {
|
||||||
_id: {
|
worldState.Goals.push({
|
||||||
$oid: "67ed7672798d6466172e3b9d"
|
_id: {
|
||||||
},
|
$oid: "67ed7672798d6466172e3b9c"
|
||||||
Activation: {
|
|
||||||
$date: {
|
|
||||||
$numberLong: "1743616800000"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
Expiry: {
|
|
||||||
$date: {
|
|
||||||
$numberLong: "2000000000000"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
Count: 0,
|
|
||||||
Goal: 3,
|
|
||||||
InterimGoals: [1, 2],
|
|
||||||
BonusGoal: 4,
|
|
||||||
Success: 0,
|
|
||||||
Personal: true,
|
|
||||||
Bounty: true,
|
|
||||||
ClampNodeScores: true,
|
|
||||||
Node: "EventNode29",
|
|
||||||
ConcurrentMissionKeyNames: [
|
|
||||||
"/Lotus/Types/Keys/WolfTacAlertReduxB",
|
|
||||||
"/Lotus/Types/Keys/WolfTacAlertReduxC",
|
|
||||||
"/Lotus/Types/Keys/WolfTacAlertReduxD"
|
|
||||||
],
|
|
||||||
ConcurrentNodeReqs: [1, 2, 3],
|
|
||||||
ConcurrentNodes: ["EventNode28", "EventNode39", "EventNode40"], // Incompatible with Galleon Of Ghouls, Orphix Venom, Warframe Anniversary
|
|
||||||
MissionKeyName: "/Lotus/Types/Keys/WolfTacAlertReduxA",
|
|
||||||
Faction: "FC_GRINEER",
|
|
||||||
Desc: "/Lotus/Language/Alerts/WolfAlert",
|
|
||||||
Icon: "/Lotus/Interface/Icons/Npcs/Seasonal/WolfStalker.png",
|
|
||||||
Tag: "WolfHuntRedux",
|
|
||||||
InterimRewards: [
|
|
||||||
{
|
|
||||||
credits: 50000,
|
|
||||||
items: ["/Lotus/StoreItems/Types/Recipes/Weapons/WeaponParts/ThrowingHammerHandle"]
|
|
||||||
},
|
},
|
||||||
{
|
Activation: {
|
||||||
credits: 50000,
|
$date: {
|
||||||
items: ["/Lotus/StoreItems/Types/Recipes/Weapons/WeaponParts/ThrowingHammerHead"]
|
$numberLong: "1743616800000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
Expiry: {
|
||||||
|
$date: {
|
||||||
|
$numberLong: "2000000000000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
Count: 0,
|
||||||
|
Goal: 1,
|
||||||
|
BonusGoal: 2,
|
||||||
|
Success: 0,
|
||||||
|
Personal: true,
|
||||||
|
Bounty: true,
|
||||||
|
ClampNodeScores: true,
|
||||||
|
Node: "EventNode29",
|
||||||
|
ConcurrentMissionKeyNames: ["/Lotus/Types/Keys/WolfTacAlertB"],
|
||||||
|
ConcurrentNodeReqs: [1],
|
||||||
|
ConcurrentNodes: ["EventNode28"], // Incompatible with Galleon Of Ghouls, Orphix Venom, Warframe Anniversary
|
||||||
|
MissionKeyName: "/Lotus/Types/Keys/WolfTacAlertA",
|
||||||
|
Faction: "FC_GRINEER",
|
||||||
|
Desc: "/Lotus/Language/Alerts/WolfAlert",
|
||||||
|
Icon: "/Lotus/Interface/Icons/Npcs/Seasonal/WolfStalker.png",
|
||||||
|
Tag: "WolfHuntRedux", // unfaithful
|
||||||
|
Reward: {
|
||||||
|
countedItems: [{ ItemType: "/Lotus/Types/Items/MiscItems/Alertium", ItemCount: 10 }]
|
||||||
|
},
|
||||||
|
BonusReward: {
|
||||||
|
items: [
|
||||||
|
"/Lotus/StoreItems/Upgrades/Mods/Randomized/RawRifleRandomMod",
|
||||||
|
"/Lotus/StoreItems/Upgrades/Skins/Clan/BountyHunterBadgeItem"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
],
|
});
|
||||||
Reward: {
|
} else if (config.worldState.wolfHunt == 1) {
|
||||||
credits: 50000,
|
worldState.Goals.push({
|
||||||
items: ["/Lotus/StoreItems/Types/Recipes/Weapons/WeaponParts/ThrowingHammerMotor"]
|
_id: {
|
||||||
},
|
$oid: "67ed7672798d6466172e3b9d"
|
||||||
BonusReward: {
|
},
|
||||||
credits: 50000,
|
Activation: {
|
||||||
items: [
|
$date: {
|
||||||
"/Lotus/StoreItems/Types/Recipes/Weapons/ThrowingHammerBlueprint",
|
$numberLong: "1743616800000"
|
||||||
"/Lotus/StoreItems/Types/Items/MiscItems/OrokinCatalyst",
|
}
|
||||||
"/Lotus/StoreItems/Upgrades/Skins/Clan/BountyHunterBadgeItem"
|
},
|
||||||
]
|
Expiry: {
|
||||||
}
|
$date: {
|
||||||
});
|
$numberLong: "2000000000000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
Count: 0,
|
||||||
|
Goal: 3,
|
||||||
|
InterimGoals: [1, 2],
|
||||||
|
BonusGoal: 4,
|
||||||
|
Success: 0,
|
||||||
|
Personal: true,
|
||||||
|
Bounty: true,
|
||||||
|
ClampNodeScores: true,
|
||||||
|
Node: "EventNode29",
|
||||||
|
ConcurrentMissionKeyNames: [
|
||||||
|
"/Lotus/Types/Keys/WolfTacAlertReduxB",
|
||||||
|
"/Lotus/Types/Keys/WolfTacAlertReduxC",
|
||||||
|
"/Lotus/Types/Keys/WolfTacAlertReduxD"
|
||||||
|
],
|
||||||
|
ConcurrentNodeReqs: [1, 2, 3],
|
||||||
|
ConcurrentNodes: ["EventNode28", "EventNode39", "EventNode40"], // Incompatible with Galleon Of Ghouls, Orphix Venom, Warframe Anniversary
|
||||||
|
MissionKeyName: "/Lotus/Types/Keys/WolfTacAlertReduxA",
|
||||||
|
Faction: "FC_GRINEER",
|
||||||
|
Desc: "/Lotus/Language/Alerts/WolfAlert",
|
||||||
|
Icon: "/Lotus/Interface/Icons/Npcs/Seasonal/WolfStalker.png",
|
||||||
|
Tag: "WolfHuntRedux",
|
||||||
|
InterimRewards: [
|
||||||
|
{
|
||||||
|
credits: 50000,
|
||||||
|
items: ["/Lotus/StoreItems/Types/Recipes/Weapons/WeaponParts/ThrowingHammerHandle"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
credits: 50000,
|
||||||
|
items: ["/Lotus/StoreItems/Types/Recipes/Weapons/WeaponParts/ThrowingHammerHead"]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
Reward: {
|
||||||
|
credits: 50000,
|
||||||
|
items: ["/Lotus/StoreItems/Types/Recipes/Weapons/WeaponParts/ThrowingHammerMotor"]
|
||||||
|
},
|
||||||
|
BonusReward: {
|
||||||
|
credits: 50000,
|
||||||
|
items: [
|
||||||
|
"/Lotus/StoreItems/Types/Recipes/Weapons/ThrowingHammerBlueprint",
|
||||||
|
"/Lotus/StoreItems/Types/Items/MiscItems/OrokinCatalyst",
|
||||||
|
"/Lotus/StoreItems/Upgrades/Skins/Clan/BountyHunterBadgeItem"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const tagsForOlderGoals: string[] = [
|
const tagsForOlderGoals: string[] = [
|
||||||
@ -2822,7 +2865,7 @@ export const getWorldState = (buildLabel?: string): IWorldState => {
|
|||||||
Success: 0,
|
Success: 0,
|
||||||
Personal: true,
|
Personal: true,
|
||||||
Best: true,
|
Best: true,
|
||||||
Node: "EventNode28", // Incompatible with Galleon Of Ghouls, Wolf Hunt (2025)
|
Node: "EventNode28", // Incompatible with Galleon Of Ghouls, Wolf Hunt
|
||||||
MissionKeyName: "/Lotus/Types/Keys/MechSurvivalGrineerGalleon",
|
MissionKeyName: "/Lotus/Types/Keys/MechSurvivalGrineerGalleon",
|
||||||
Faction: "FC_SENTIENT",
|
Faction: "FC_SENTIENT",
|
||||||
Desc: "/Lotus/Language/Events/MechEventMissionTier2",
|
Desc: "/Lotus/Language/Events/MechEventMissionTier2",
|
||||||
|
|||||||
@ -1188,11 +1188,6 @@
|
|||||||
<label class="form-check-label" for="unfaithfulBugFixes.useAnniversaryTagForOldGoals" data-loc="worldState_useAnniversaryTagForOldGoals"></label>
|
<label class="form-check-label" for="unfaithfulBugFixes.useAnniversaryTagForOldGoals" data-loc="worldState_useAnniversaryTagForOldGoals"></label>
|
||||||
<abbr data-loc-inc="worldState_anniversary"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><path d="M320 576C461.4 576 576 461.4 576 320C576 178.6 461.4 64 320 64C178.6 64 64 178.6 64 320C64 461.4 178.6 576 320 576zM320 200C333.3 200 344 210.7 344 224L344 336C344 349.3 333.3 360 320 360C306.7 360 296 349.3 296 336L296 224C296 210.7 306.7 200 320 200zM293.3 416C292.7 406.1 297.6 396.7 306.1 391.5C314.6 386.4 325.3 386.4 333.8 391.5C342.3 396.7 347.2 406.1 346.6 416C347.2 425.9 342.3 435.3 333.8 440.5C325.3 445.6 314.6 445.6 306.1 440.5C297.6 435.3 292.7 425.9 293.3 416z"/></svg></abbr>
|
<abbr data-loc-inc="worldState_anniversary"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><path d="M320 576C461.4 576 576 461.4 576 320C576 178.6 461.4 64 320 64C178.6 64 64 178.6 64 320C64 461.4 178.6 576 320 576zM320 200C333.3 200 344 210.7 344 224L344 336C344 349.3 333.3 360 320 360C306.7 360 296 349.3 296 336L296 224C296 210.7 306.7 200 320 200zM293.3 416C292.7 406.1 297.6 396.7 306.1 391.5C314.6 386.4 325.3 386.4 333.8 391.5C342.3 396.7 347.2 406.1 346.6 416C347.2 425.9 342.3 435.3 333.8 440.5C325.3 445.6 314.6 445.6 306.1 440.5C297.6 435.3 292.7 425.9 293.3 416z"/></svg></abbr>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-check">
|
|
||||||
<input class="form-check-input" type="checkbox" id="worldState.wolfHunt" />
|
|
||||||
<label class="form-check-label" for="worldState.wolfHunt" data-loc="worldState_wolfHunt"></label>
|
|
||||||
<abbr data-loc-inc="worldState_galleonOfGhouls|worldState_orphixVenom|worldState_anniversary"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><path d="M320 576C461.4 576 576 461.4 576 320C576 178.6 461.4 64 320 64C178.6 64 64 178.6 64 320C64 461.4 178.6 576 320 576zM320 200C333.3 200 344 210.7 344 224L344 336C344 349.3 333.3 360 320 360C306.7 360 296 349.3 296 336L296 224C296 210.7 306.7 200 320 200zM293.3 416C292.7 406.1 297.6 396.7 306.1 391.5C314.6 386.4 325.3 386.4 333.8 391.5C342.3 396.7 347.2 406.1 346.6 416C347.2 425.9 342.3 435.3 333.8 440.5C325.3 445.6 314.6 445.6 306.1 440.5C297.6 435.3 292.7 425.9 293.3 416z"/></svg></abbr>
|
|
||||||
</div>
|
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input class="form-check-input" type="checkbox" id="worldState.orphixVenom" />
|
<input class="form-check-input" type="checkbox" id="worldState.orphixVenom" />
|
||||||
<label class="form-check-label" for="worldState.orphixVenom" data-loc="worldState_orphixVenom"></label>
|
<label class="form-check-label" for="worldState.orphixVenom" data-loc="worldState_orphixVenom"></label>
|
||||||
@ -1212,6 +1207,15 @@
|
|||||||
<input class="form-check-input" type="checkbox" id="worldState.qtccAlerts" />
|
<input class="form-check-input" type="checkbox" id="worldState.qtccAlerts" />
|
||||||
<label class="form-check-label" for="worldState.qtccAlerts" data-loc="worldState_qtccAlerts"></label>
|
<label class="form-check-label" for="worldState.qtccAlerts" data-loc="worldState_qtccAlerts"></label>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="form-group mt-2">
|
||||||
|
<label class="form-label" for="worldState.wolfHunt" data-loc="worldState_wolfHunt"></label>
|
||||||
|
<abbr data-loc-inc="worldState_galleonOfGhouls|worldState_orphixVenom|worldState_anniversary"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><path d="M320 576C461.4 576 576 461.4 576 320C576 178.6 461.4 64 320 64C178.6 64 64 178.6 64 320C64 461.4 178.6 576 320 576zM320 200C333.3 200 344 210.7 344 224L344 336C344 349.3 333.3 360 320 360C306.7 360 296 349.3 296 336L296 224C296 210.7 306.7 200 320 200zM293.3 416C292.7 406.1 297.6 396.7 306.1 391.5C314.6 386.4 325.3 386.4 333.8 391.5C342.3 396.7 347.2 406.1 346.6 416C347.2 425.9 342.3 435.3 333.8 440.5C325.3 445.6 314.6 445.6 306.1 440.5C297.6 435.3 292.7 425.9 293.3 416z"/></svg></abbr>
|
||||||
|
<select class="form-control" id="worldState.wolfHunt" data-default="null">
|
||||||
|
<option value="null" data-loc="disabled"></option>
|
||||||
|
<option value="0" data-loc="worldState_from_year" data-loc-replace="2019"></option>
|
||||||
|
<option value="1" data-loc="worldState_from_year" data-loc-replace="2025"></option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
<div class="form-group mt-2 d-flex gap-2">
|
<div class="form-group mt-2 d-flex gap-2">
|
||||||
<div class="flex-fill">
|
<div class="flex-fill">
|
||||||
<label class="form-label" for="worldState.hallowedNightmares" data-loc="worldState_hallowedNightmares"></label>
|
<label class="form-label" for="worldState.hallowedNightmares" data-loc="worldState_hallowedNightmares"></label>
|
||||||
|
|||||||
@ -284,7 +284,7 @@ dict = {
|
|||||||
worldState_plagueStar: `Plagenstern`,
|
worldState_plagueStar: `Plagenstern`,
|
||||||
worldState_dogDays: `Hitzefrei`,
|
worldState_dogDays: `Hitzefrei`,
|
||||||
worldState_dogDaysRewards: `[UNTRANSLATED] Dog Days Rewards`,
|
worldState_dogDaysRewards: `[UNTRANSLATED] Dog Days Rewards`,
|
||||||
worldState_wolfHunt: `Wolfsjagd (2025)`,
|
worldState_wolfHunt: `Wolfsjagd`,
|
||||||
worldState_voidCorruption: `Void-Korruption (|VAL|)`,
|
worldState_voidCorruption: `Void-Korruption (|VAL|)`,
|
||||||
worldState_orphixVenom: `Orphix Gift`,
|
worldState_orphixVenom: `Orphix Gift`,
|
||||||
worldState_longShadow: `Lange Schatten`,
|
worldState_longShadow: `Lange Schatten`,
|
||||||
|
|||||||
@ -283,7 +283,7 @@ dict = {
|
|||||||
worldState_plagueStar: `Plague Star`,
|
worldState_plagueStar: `Plague Star`,
|
||||||
worldState_dogDays: `Dog Days`,
|
worldState_dogDays: `Dog Days`,
|
||||||
worldState_dogDaysRewards: `Dog Days Rewards`,
|
worldState_dogDaysRewards: `Dog Days Rewards`,
|
||||||
worldState_wolfHunt: `Wolf Hunt (2025)`,
|
worldState_wolfHunt: `Wolf Hunt`,
|
||||||
worldState_voidCorruption: `Void Corruption (|VAL|)`,
|
worldState_voidCorruption: `Void Corruption (|VAL|)`,
|
||||||
worldState_orphixVenom: `Orphix Venom`,
|
worldState_orphixVenom: `Orphix Venom`,
|
||||||
worldState_longShadow: `Long Shadow`,
|
worldState_longShadow: `Long Shadow`,
|
||||||
|
|||||||
@ -284,7 +284,7 @@ dict = {
|
|||||||
worldState_plagueStar: `Estrella Infestada`,
|
worldState_plagueStar: `Estrella Infestada`,
|
||||||
worldState_dogDays: `Canícula`,
|
worldState_dogDays: `Canícula`,
|
||||||
worldState_dogDaysRewards: `Recompensas de Canícula`,
|
worldState_dogDaysRewards: `Recompensas de Canícula`,
|
||||||
worldState_wolfHunt: `Cacería del Lobo (2025)`,
|
worldState_wolfHunt: `Cacería del Lobo`,
|
||||||
worldState_voidCorruption: `Corrupción del Vacío (|VAL|)`,
|
worldState_voidCorruption: `Corrupción del Vacío (|VAL|)`,
|
||||||
worldState_orphixVenom: `Veneno de Orphix`,
|
worldState_orphixVenom: `Veneno de Orphix`,
|
||||||
worldState_longShadow: `Sombra Prolongada`,
|
worldState_longShadow: `Sombra Prolongada`,
|
||||||
|
|||||||
@ -284,7 +284,7 @@ dict = {
|
|||||||
worldState_plagueStar: `Fléau Céleste`,
|
worldState_plagueStar: `Fléau Céleste`,
|
||||||
worldState_dogDays: `Bataille d'Eau`,
|
worldState_dogDays: `Bataille d'Eau`,
|
||||||
worldState_dogDaysRewards: `Récompenses de la Bataille d'Eau`,
|
worldState_dogDaysRewards: `Récompenses de la Bataille d'Eau`,
|
||||||
worldState_wolfHunt: `Chasse au Loup (2025)`,
|
worldState_wolfHunt: `Chasse au Loup`,
|
||||||
worldState_voidCorruption: `Corruption du Néant (|VAL|)`,
|
worldState_voidCorruption: `Corruption du Néant (|VAL|)`,
|
||||||
worldState_orphixVenom: `Venin Orphix`,
|
worldState_orphixVenom: `Venin Orphix`,
|
||||||
worldState_longShadow: `La Propagation des Ombres`,
|
worldState_longShadow: `La Propagation des Ombres`,
|
||||||
|
|||||||
@ -284,7 +284,7 @@ dict = {
|
|||||||
worldState_plagueStar: `Чумная звезда`,
|
worldState_plagueStar: `Чумная звезда`,
|
||||||
worldState_dogDays: `Знойные дни`,
|
worldState_dogDays: `Знойные дни`,
|
||||||
worldState_dogDaysRewards: `Награды Знойных дней`,
|
worldState_dogDaysRewards: `Награды Знойных дней`,
|
||||||
worldState_wolfHunt: `Волчья Охота (2025)`,
|
worldState_wolfHunt: `Волчья Охота`,
|
||||||
worldState_voidCorruption: `Искажение Бездны (|VAL|)`,
|
worldState_voidCorruption: `Искажение Бездны (|VAL|)`,
|
||||||
worldState_orphixVenom: `Яд Орфикса`,
|
worldState_orphixVenom: `Яд Орфикса`,
|
||||||
worldState_longShadow: `Длинная Тень`,
|
worldState_longShadow: `Длинная Тень`,
|
||||||
|
|||||||
@ -284,7 +284,7 @@ dict = {
|
|||||||
worldState_plagueStar: `Морова зірка`,
|
worldState_plagueStar: `Морова зірка`,
|
||||||
worldState_dogDays: `Спекотні дні`,
|
worldState_dogDays: `Спекотні дні`,
|
||||||
worldState_dogDaysRewards: `Нагороди Спекотних днів`,
|
worldState_dogDaysRewards: `Нагороди Спекотних днів`,
|
||||||
worldState_wolfHunt: `Полювання на Вовка (2025)`,
|
worldState_wolfHunt: `Полювання на Вовка`,
|
||||||
worldState_voidCorruption: `Викривлення Порожнечі (|VAL|)`,
|
worldState_voidCorruption: `Викривлення Порожнечі (|VAL|)`,
|
||||||
worldState_orphixVenom: `Орфіксова отрута`,
|
worldState_orphixVenom: `Орфіксова отрута`,
|
||||||
worldState_longShadow: `Довга тінь`,
|
worldState_longShadow: `Довга тінь`,
|
||||||
|
|||||||
@ -284,7 +284,7 @@ dict = {
|
|||||||
worldState_plagueStar: `瘟疫之星`,
|
worldState_plagueStar: `瘟疫之星`,
|
||||||
worldState_dogDays: `三伏天`,
|
worldState_dogDays: `三伏天`,
|
||||||
worldState_dogDaysRewards: `三伏天奖励设置`,
|
worldState_dogDaysRewards: `三伏天奖励设置`,
|
||||||
worldState_wolfHunt: `恶狼狩猎 (2025)`,
|
worldState_wolfHunt: `恶狼狩猎`,
|
||||||
worldState_voidCorruption: `虚空堕落 (|VAL|)`,
|
worldState_voidCorruption: `虚空堕落 (|VAL|)`,
|
||||||
worldState_orphixVenom: `奥影之毒`,
|
worldState_orphixVenom: `奥影之毒`,
|
||||||
worldState_longShadow: `暗夜长影`,
|
worldState_longShadow: `暗夜长影`,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user