Skip to content

Commit

Permalink
Add Sprouts Adventure (#892)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zemogiter authored and plata committed Mar 8, 2019
1 parent 0183976 commit eb58b42
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Applications/Games/Sprouts Adventure/Local/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
include("engines.wine.quick_script.local_installer_script");
include("engines.wine.verbs.vcrun2005");

var installerImplementation = {
run: function () {
new LocalInstallerScript()
.name("Sprouts Adventure")
.editor("Big Fish Games")
.applicationHomepage("http://www.sproutsadventure.com/")
.author("Zemogiter")
.category("Games")
.executable("Sprouts Adventure.CRC")
.preInstall(function (wine, wizard) {
wizard.message(tr("This game requires winebind (for Ubuntu) or samba and libwbclient/lib32-libwbclient (for Arch Linux)."));
wine.vcrun2005();
})
.go();
}
};

/* exported Installer */
var Installer = Java.extend(org.phoenicis.scripts.Installer, installerImplementation);
11 changes: 11 additions & 0 deletions Applications/Games/Sprouts Adventure/Local/script.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"scriptName" : "Local",
"id" : "sprouts_adventure_local",
"compatibleOperatingSystems" : [
"MACOSX",
"LINUX"
],
"testingOperatingSystems" : [],
"free" : false,
"requiresPatch" : false
}
5 changes: 5 additions & 0 deletions Applications/Games/Sprouts Adventure/application.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"name" : "Sprouts Adventure",
"id" : "sprouts_adventure",
"description" : "Sprouts are curious creatures who have lived a very long time on the Mushroom Cliffs. They have quite the spark and one thing is for sure, they need your help!"
}
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit eb58b42

Please sign in to comment.