Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Assassin's Creed: Syndicate #974

Closed
wants to merge 2 commits into from
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: Syndicate/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 Brotherhood")
.editor("Ubisoft")
.author("KREYREN")
.appId(368500)
.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: Syndicate/Steam/script.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"scriptName" : "Steam",
"id" : "applications.games.assassins_creed_syndicate.steam",
"compatibleOperatingSystems" : [
"MACOSX",
"LINUX"
],
"testingOperatingSystems" : [
"MACOSX"
],
"free" : false,
"requiresPatch" : false
}
19 changes: 19 additions & 0 deletions Applications/Games/Assassin's Creed: Syndicate/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 Brotherhood")
.editor("Ubisoft, Gameloft, Ubisoft Montreal, Blue Byte, MORE")
.applicationHomepage("https://www.ubisoft.com/en-us/game/assassins-creed")
.author("KREYREN")
.appId(1955)
.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: Syndicate/Uplay/script.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"scriptName" : "Uplay",
"id" : "applications.games.assassins_creed_syndicate.uplay",
"compatibleOperatingSystems" : [
"MACOSX",
"LINUX"
],
"testingOperatingSystems" : [
"MACOSX"
],
"free" : false,
"requiresPatch" : false
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"name" : "Assassin’s Creed® Syndicate",
"id" : "applications.games.assassins_creed_syndicate",
"description" : "Assassin's Creed Syndicate is an action-adventure video game developed by Ubisoft Quebec and published by Ubisoft. (Wikipedia)"
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.