Skip to content

Commit da0bb55

Browse files
author
Jacob Hrbek
committed
Add Assassin's Creed Liberation
1 parent 3622d13 commit da0bb55

File tree

6 files changed

+67
-0
lines changed

6 files changed

+67
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
include("engines.wine.quick_script.steam_script");
2+
include("engines.wine.verbs.uplay");
3+
4+
var installerImplementation = {
5+
run: function () {
6+
new SteamScript()
7+
.name("Assassin’s Creed® Brotherhood")
8+
.editor("Ubisoft")
9+
.author("KREYREN")
10+
.appId(260210)
11+
.wineVersion(LATEST_STAGING_VERSION)
12+
.wineDistribution("staging")
13+
.postInstall(function (wine/*, wizard*/) {
14+
wine.uplay();
15+
})
16+
.go();
17+
}
18+
};
19+
20+
/* exported Installer */
21+
var Installer = Java.extend(org.phoenicis.scripts.Installer, installerImplementation);
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"scriptName" : "Steam",
3+
"id" : "applications.games.assassins_creed_liberation.steam",
4+
"compatibleOperatingSystems" : [
5+
"MACOSX",
6+
"LINUX"
7+
],
8+
"testingOperatingSystems" : [
9+
"MACOSX"
10+
],
11+
"free" : false,
12+
"requiresPatch" : false
13+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
include("engines.wine.quick_script.uplay_script");
2+
3+
var installerImplementation = {
4+
run: function () {
5+
new UplayScript()
6+
.name("Assassin's Creed")
7+
.editor("Ubisoft, Gameloft, Ubisoft Montreal, Blue Byte, MORE")
8+
.applicationHomepage("https://www.ubisoft.com/en-us/game/assassins-creed")
9+
.author("KREYREN")
10+
.appId(625)
11+
.go();
12+
};
13+
14+
/* exported Installer */
15+
var Installer = Java.extend(org.phoenicis.scripts.Installer, installerImplementation);
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"scriptName" : "Uplay",
3+
"id" : "applications.games.assassins_creed_liberation.uplay",
4+
"compatibleOperatingSystems" : [
5+
"MACOSX",
6+
"LINUX"
7+
],
8+
"testingOperatingSystems" : [
9+
"MACOSX"
10+
],
11+
"free" : false,
12+
"requiresPatch" : false
13+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"name" : "Assassin’s Creed® Liberation",
3+
"id" : "applications.games.assassins_creed_liberation",
4+
"description" : "Assassin's Creed III: Liberation is a 2012 action-adventure video game developed and published by Ubisoft, and released on October 30, 2012 in North America, with a worldwide launch the following day, on PlayStation Vita. (Wikipedia)"
5+
}
189 KB
Loading

0 commit comments

Comments
 (0)