Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions Applications/Games/Subnautica Below Zero/Steam/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
include(["engines", "wine", "quick_script", "steam_script"]);
include(["engines", "wine", "plugins", "virtual_desktop"]);
include(["engines", "wine", "verbs", "vcrun2013"]);
include(["engines", "wine", "verbs", "corefonts"]);
include(["engines", "wine", "verbs", "dxvk"]);
include(["utils", "functions", "apps", "resources"]);

var installerImplementation = {
run: function () {
new SteamScript()
.name("Subnautica Below Zero")
.editor("Unknown Worlds Entertainment")
.author("Zemogiter")
.applicationHomepage("https://unknownworlds.com/subnautica/")
.wineDistribution("upstream")
.wineVersion(LATEST_STABLE_VERSION)
.wineArchitecture("amd64")
.appId(848450)
.preInstall(function (wine, wizard) {
wizard.message(tr("You can make the game smoother by using this: https://github.com/lutris/lutris/wiki/How-to:-Esync"));
wine.vcrun2013();
wine.corefonts();
wine.DXVK();
var screenSize = java.awt.Toolkit.getDefaultToolkit().getScreenSize();
wine.setVirtualDesktop(screenSize.width, screenSize.height);
})
.gameOverlay(false)
.go();
}
};

/* exported Installer */
var Installer = Java.extend(org.phoenicis.scripts.Installer, installerImplementation);
10 changes: 10 additions & 0 deletions Applications/Games/Subnautica Below Zero/Steam/script.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"scriptName" : "Steam",
"id" : "steam",
"compatibleOperatingSystems" : [
"LINUX"
],
"testingOperatingSystems" : [],
"free" : false,
"requiresPatch" : false
}
5 changes: 5 additions & 0 deletions Applications/Games/Subnautica Below Zero/application.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"name" : "Subnautica Below Zero",
"id" : "subnautica_below_zero",
"description" : "Below Zero is an underwater adventure game set on an alien ocean world. It is a new chapter in the Subnautica universe, and is currently in development by Unknown Worlds.<br/><b>Return to planet 4546B</b><br/>Dive into a freezing underwater adventure. Below Zero is set in an arctic region of planet 4546B. As a scientist posted to a research station on the planet's surface, you are tasked with studying alien artefacts. The Vesper space station orbits high above you, sending supplies, instructions, and receiving samples you launch from the surface. When disaster strikes the research station, you must improvise to survive: Construct habitats, scavenge for resources, hunt for food, and craft equipment.<br/><b>Explore new biomes</b><br/>Swim beneath the blue-lit, arching growth of Twisty Bridges. Navigate treacherous ice floes on the ocean surface. Clamber up snow covered peaks, and venture into icy caves. Maneuver between steaming Thermal Vents. Below Zero presents entirely new environments for you to survive, study, and explore. Discover new lifeforms in the icy depths of 4546B. Swim through the giant Titan Holefish, escape from the aggressive Brute Shark, and visit the adorable Pengwings. Some residents of the frozen ocean will help you, and some might try to harm you."
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.