Skip to content
Closed
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
23 changes: 23 additions & 0 deletions Applications/Games/Assassin's Creed: Rogue/Steam/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
include("engines.wine.quick_script.steam_script");
include("engines.wine.verbs.uplay");
include("engines.wine.verbs.dxvk");

var installerImplementation = {
run: function () {
new SteamScript()
.name("Assassin’s Creed® Rogue")
.editor("Ubisoft")
.author("KREYREN")
.appId(311560)
.wineVersion(LATEST_STAGING_VERSION)
.wineDistribution("staging")
.postInstall(function (wine/*, wizard*/) {
wine.uplay();
wine.DXVK();
})
.go();
}
};

/* exported Installer */
var Installer = Java.extend(org.phoenicis.scripts.Installer, installerImplementation);
13 changes: 13 additions & 0 deletions Applications/Games/Assassin's Creed: Rogue/Steam/script.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"scriptName" : "Steam",
"id" : "applications.games.assassins_creed_rogue.steam",
"compatibleOperatingSystems" : [
"MACOSX",
"LINUX"
],
"testingOperatingSystems" : [
"MACOSX"
],
"free" : false,
"requiresPatch" : false
}
19 changes: 19 additions & 0 deletions Applications/Games/Assassin's Creed: Rogue/Uplay/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
include("engines.wine.quick_script.uplay_script");
include("engines.wine.verbs.dxvk");

var installerImplementation = {
run: function () {
new UplayScript()
.name("Assassin's Creed")
.editor("Ubisoft, Gameloft, Ubisoft Montreal, Blue Byte, MORE")
.applicationHomepage("https://www.ubisoft.com/en-us/game/assassins-creed")
.author("KREYREN")
.appId(895)
.preInstall(function (wine/*, wizard*/) {
wine.DXVK();
})
.go();
};

/* exported Installer */
var Installer = Java.extend(org.phoenicis.scripts.Installer, installerImplementation);
13 changes: 13 additions & 0 deletions Applications/Games/Assassin's Creed: Rogue/Uplay/script.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"scriptName" : "Uplay",
"id" : "applications.games.assassins_creed_brotherhood.uplay",
"compatibleOperatingSystems" : [
"MACOSX",
"LINUX"
],
"testingOperatingSystems" : [
"MACOSX"
],
"free" : false,
"requiresPatch" : false
}
5 changes: 5 additions & 0 deletions Applications/Games/Assassin's Creed: Rogue/application.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"name" : "Assassin’s Creed® Brotherhood",
"id" : "applications.games.assassins_creed_brotherhood",
"description" : "Live and breathe as Ezio, a legendary Master Assassin, in his enduring struggle against the powerful Templar order.<br><br>He must journey into Italy’s greatest city, Rome, center of power, greed and corruption to strike at the heart of the enemy. Defeating the corrupt tyrants entrenched there will require not only strength, but leadership, as Ezio commands an entire brotherhood of assassins who will rally to his side. Only by working together can the assassins defeat their mortal enemies and prevent the extinction of their order."
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.