-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Uploading the whole main patch v11.0 release. It was in dire need of revision control. Mars and Venus not included yet.
- Loading branch information
Showing
749 changed files
with
1,644 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
*** Instructions *** | ||
|
||
Thanks for downloading Aeon Extension Patch - Vanilla theme, created and organized by Ezer'Arch (ezerarch.com). | ||
|
||
This is a patch made for one of the best futuristic and modern texture packs, Aeon by thesparko. Aeon main pack is required! | ||
|
||
Installation guide, full info, credits, Aeon main pack download and more content: http://www.ezerarch.com/resourcepacks.html | ||
|
||
|
||
*** License *** | ||
|
||
1. Do not make money directly from this pack itself or its parts. | ||
|
||
2. Do not redistribute. Make sure you have downloaded this pack from here: http://www.ezerarch.com/resourcepacks.html | ||
|
||
3. If used in public (video, server, webpage etc), give credits. For courtesy, a link back is appreciated. | ||
|
||
Feel free to contact me if you need to ask something. | ||
|
||
|
||
*** Additional Credits *** | ||
|
||
- Original Aeon 1.7.10, Aeon::Legacy, Lost Space and Year 3000 by thesparko: http://www.planetminecraft.com/member/thesparko/ | ||
|
||
- Digital clock graphic by ElectricMonkey: http://redd.it/19619b | ||
|
||
- Mars and Venus graphics by Space Viking from Galacticraft devteam: http://micdoodle8.com/mods/galacticraft | ||
|
||
- Nether Star, Wither Skull, Cookie, Wither, Wither Skeleton, Minecart, Potatoes, Pumpkin Pie, Compass, Iron Golem, Seeds and Flower Pot graphics from LEDCraft by Vickal1 (see FAQ in the section 6, 4th question): http://www.minecraftforum.net/forums/mapping-and-modding/resource-packs/1240612-1-5-1-1-5-32x-ledcraft-modern-look-with-led-torch | ||
|
||
- Disc 11 - Music used: "Dance of the Pixies" by Jens Kiilstofte (CC-BY): https://machinimasound.com/music/dance-of-the-pixies | ||
|
||
- Iron Golem sound effects: AGMoneyTrigga (https://www.freesound.org/people/AGMoneyTrigga/sounds/231347/) and Skullsmasha (https://www.freesound.org/people/Skullsmasha/sounds/123253/), CC0 license. | ||
|
||
|
||
*** Contact Info *** | ||
|
||
Site: http://www.ezerarch.com | ||
|
||
YouTube channel: http://www.youtube.com/EzerArch | ||
|
||
Twitch channel: http://www.twitch.tv/ezerarch | ||
|
||
Twitter: http://twitter.com/EzerArch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
[ | ||
{ | ||
"Name" : "BkgCaves", | ||
"Type" : "Looping", | ||
"Sound" : "ambiotic:bkgs.cave_loop", | ||
"Conditions" : "#UnderGround# && !Player.IsExposed", | ||
"Restrict" : "Player.Submerged", | ||
"Volume" : { | ||
"Type" : "Constant", | ||
"Value" : 0.5 | ||
} | ||
}, | ||
|
||
{ | ||
"Name" : "DayBkgGrassBugs", | ||
"Type" : "Looping", | ||
"Sound" : "ambiotic:bkgs.day_bugs_loop", | ||
"Conditions" : "LS.Temperature >= 0.5 && LS.Temperature < 1.80 && #IsDay# && #BugPlants#", | ||
"Restrict" : "#UnderGround# || Player.Submerged || LS.Salinity >= 0.1 || #IsJungle# || #IsSpace#", | ||
"Volume" : { | ||
"Type" : "Scripted", | ||
"Code" : "0.1*#Muffle#" | ||
} | ||
}, | ||
|
||
{ | ||
"Name" : "NightBkgGrassBugs", | ||
"Type" : "Looping", | ||
"Sound" : "ambiotic:bkgs.night_bugs_loop", | ||
"Conditions" : "LS.Temperature >= 0.5 && LS.Temperature < 1.80 && #BugPlants#", | ||
"Restrict" : "#UnderGround# || Player.Submerged || #IsDay# || LS.Salinity >= 0.1 || #IsJungle# || #IsSpace#", | ||
"Volume" : { | ||
"Type" : "Scripted", | ||
"Code" : "0.1*#Muffle#" | ||
} | ||
}, | ||
|
||
{ | ||
"Name" : "HighWind", | ||
"Type" : "Looping", | ||
"Sound" : "ambiotic:bkgs.inst_whistle_wind_loop", | ||
"Conditions" : "Player.Y >= 100 && Player.Y < 400", | ||
"Restrict" : "#UnderGround# || Player.Submerged || #IsSpace# || #IsDead#", | ||
"Volume" : { | ||
"Type" : "Scripted", | ||
"Code" : "(1 - vclmp(Math.abs(Player.Y - 250) / 150.0)) * #Muffle#;" | ||
} | ||
}, | ||
|
||
{ | ||
"Name" : "Rain", | ||
"Type" : "Looping", | ||
"Sound" : "ambiotic:bkgs.inst_rain_loop", | ||
"Conditions" : "World.IsRaining && LS.Humidity > 0.3", | ||
"Restrict" : "((#UnderGround#) && !Player.IsExposed) || Player.Submerged", | ||
"Volume" : { | ||
"Type" : "Scripted", | ||
"Code" : "(Player.IsExposed ? 0.2 : 0.1)*(World.IsRaining ? 1.0 : 0.0)" | ||
}, | ||
"Pitch" : { | ||
"Type" : "Scripted", | ||
"Code" : "(Player.IsExposed ? 1.0 : 0.5)" | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[ | ||
{ | ||
"Name" : "DaySeagulls", | ||
"Type" : "Instant", | ||
"Sound" : "ambiotic:animals.day_inst_seagulls", | ||
"Conditions" : "LS.Salinity >= 0.2 && #IsDay# && Player.Y < 100", | ||
"Restrict" : "#UnderGround# || Player.Submerged", | ||
"Volume" : { | ||
"Type" : "Scripted", | ||
"Code" : "0.3*#Muffle#" | ||
}, | ||
"CoolDown" : { | ||
"Type" : "Random", | ||
"Min" : 50, | ||
"Max" : 250 | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[ | ||
{ | ||
"Name" : "Mars", | ||
"Type" : "Looping", | ||
"Sound" : "ambiotic:bkgs.mars_wind_loop", | ||
"Conditions" : "World.Biome == 'marsFlat'", | ||
"Restrict" : "#UnderGround#", | ||
"Volume" : { | ||
"Type" : "Scripted", | ||
"Code" : "0.35*#Muffle#" | ||
} | ||
}, | ||
|
||
{ | ||
"Name" : "MarsHighWind", | ||
"Type" : "Looping", | ||
"Sound" : "ambiotic:bkgs.inst_whistle_wind_loop", | ||
"Conditions" : "World.Biome == 'marsFlat' && Player.Y >= 100 && Player.Y < 300", | ||
"Restrict" : "(#UnderGround#) || Player.Submerged", | ||
"Volume" : { | ||
"Type" : "Scripted", | ||
"Code" : "(1 - vclmp(Math.abs(Player.Y - 200) / 100.0)) * 0.35*#Muffle#" | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[ | ||
{ | ||
"Name" : "Titan", | ||
"Type" : "Looping", | ||
"Sound" : "ambiotic:bkgs.titan_wind_loop", | ||
"Conditions" : "World.Biome == 'Titan'", | ||
"Restrict" : "#UnderGround#", | ||
"Volume" : { | ||
"Type" : "Scripted", | ||
"Code" : "0.60*#Muffle#" | ||
} | ||
}, | ||
|
||
{ | ||
"Name" : "TitanHighWind", | ||
"Type" : "Looping", | ||
"Sound" : "ambiotic:bkgs.inst_whistle_wind_loop", | ||
"Conditions" : "World.Biome == 'Titan' && Player.Y >= 100 && Player.Y < 400", | ||
"Restrict" : "(#UnderGround#) || Player.Submerged", | ||
"Volume" : { | ||
"Type" : "Scripted", | ||
"Code" : "(1 - vclmp(Math.abs(Player.Y - 250) / 150.0)) * #Muffle#" | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[ | ||
{ | ||
"Name" : "Venus", | ||
"Type" : "Looping", | ||
"Sound" : "minecraft:ambient.weather.thunder", | ||
"Conditions" : "World.Biome == 'Venus'", | ||
"Restrict" : "#UnderGround#", | ||
"Volume" : { | ||
"Type" : "Scripted", | ||
"Code" : "0.35*#Muffle#" | ||
} | ||
}, | ||
|
||
{ | ||
"Name" : "VenusHighWind", | ||
"Type" : "Looping", | ||
"Sound" : "ambiotic:bkgs.inst_whistle_wind_loop", | ||
"Conditions" : "World.Biome == 'Venus' && Player.Y >= 100 && Player.Y < 600", | ||
"Restrict" : "(#UnderGround#) || Player.Submerged", | ||
"Volume" : { | ||
"Type" : "Scripted", | ||
"Code" : "(1 - vclmp(Math.abs(Player.Y - 350) / 250.0)) * 1.2*#Muffle#" | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
[ | ||
{ | ||
"Name" : "LakeOrRiver", | ||
"Type" : "Looping", | ||
"Sound" : "ambiotic:bkgs.lake_river_loop", | ||
"Conditions" : "(LS.Water/LS.Size >= .05)", | ||
"Restrict" : "#UnderGround# || Player.Submerged || LS.Salinity > 0.01 || #IsDead#", | ||
"Volume" : { | ||
"Type" : "Scripted", | ||
"Code" : "0.25*#Muffle#" | ||
} | ||
}, | ||
|
||
{ | ||
"Name" : "SwimmingUnderWater", | ||
"Type" : "Looping", | ||
"Sound" : "ambiotic:bkgs.inst_water_underwater_loop", | ||
"Conditions" : "Player.Submerged", | ||
"Volume" : { | ||
"Type" : "Constant", | ||
"Value" : 0.2 | ||
} | ||
}, | ||
|
||
{ | ||
"Name" : "BkgBeachWaves", | ||
"Type" : "Looping", | ||
"Sound" : "ambiotic:bkgs.beach_waves_loop", | ||
"Conditions" : "LS.Salinity >= 0.1 && Player.Y < 100", | ||
"Restrict" : "#UnderGround# || Player.Submerged", | ||
"Volume" : { | ||
"Type" : "Scripted", | ||
"Code" : "0.1*#Muffle#" | ||
} | ||
} | ||
] |
Oops, something went wrong.