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

var installerImplementation = {
run: function () {
Expand All @@ -9,6 +10,9 @@ var installerImplementation = {
.wineVersion(LATEST_STAGING_VERSION)
.wineDistribution("staging")
.appId(15100)
.preInstall(function (wine/*, wizard*/) {
wine.DXVK();
})
.go();
}
};
Expand Down
20 changes: 20 additions & 0 deletions Applications/Games/Assassin's Creed/Uplay/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
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(82)
.preInstall(function (wine/*, wizard*/) {
wine.DXVK();
})
.go();
}
};

/* exported Installer */
var Installer = Java.extend(org.phoenicis.scripts.Installer, installerImplementation);
14 changes: 14 additions & 0 deletions Applications/Games/Assassin's Creed/Uplay/script.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"scriptName" : "Uplay",
"id" : "applications.games.assassins_creed.uplay",
"compatibleOperatingSystems" : [
"MACOSX",
"LINUX"
],
"testingOperatingSystems" : [
"MACOSX",
"LINUX"
],
"free" : false,
"requiresPatch" : false
}
4 changes: 2 additions & 2 deletions Applications/Games/Assassin's Creed/application.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name" : "Assassin's Creed",
"name" : "Assassin's Creed",
"id" : "applications.games.assassins_creed",
"description" : "Assassin's Creed is the next-gen game developed by Ubisoft Montreal that redefines the action genre. While other games claim to be next-gen with impressive graphics and physics, Assassin's Creed merges technology, game design, theme and emotions into a world where you instigate chaos and become a vulnerable, yet powerful, agent of change.<br><br>The setting is 1191 AD. The Third Crusade is tearing the Holy Land apart. You, Altair, intend to stop the hostilities by suppressing both sides of the conflict.You are an Assassin, a warrior shrouded in secrecy and feared for your ruthlessness. Your actions can throw your immediate environment into chaos, and your existence will shape events during this pivotal moment in history."
"description" : "Assassin's Creed is the next-gen game developed by Ubisoft Montreal that redefines the action genre. While other games claim to be next-gen with impressive graphics and physics, Assassin's Creed merges technology, game design, theme and emotions into a world where you instigate chaos and become a vulnerable, yet powerful, agent of change.<br><br>The setting is 1191 AD. The Third Crusade is tearing the Holy Land apart. You, Altair, intend to stop the hostilities by suppressing both sides of the conflict.You are an Assassin, a warrior shrouded in secrecy and feared for your ruthlessness. Your actions can throw your immediate environment into chaos, and your existence will shape events during this pivotal moment in history."
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this changed? As far as I can tell, only the "TM" has been removed. It doesn't make sense that we have to update all the translations just for this.

}