feat: add redpower
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing

This commit is contained in:
Timo Ley 2023-02-01 20:30:30 +01:00
parent b489d5e209
commit a7fa1cd08b
3 changed files with 148 additions and 134 deletions

View file

@ -3,7 +3,7 @@
"type": "modpack",
"versions": [
{
"version": "3.2.0",
"version": "3.3.0",
"versionid": -1,
"mcversion": [
"1.7.10"
@ -2017,7 +2017,7 @@
{
"id": "mod-atomicscience",
"file": {
"link": "https://maven.tilera.xyz/universalelectricity/atomicscience/1.1.1/atomicscience-1.1.1.jar",
"link": "https://maven.tilera.xyz/universalelectricity/atomicscience/1.1.2/atomicscience-1.1.2.jar",
"installer": "internal.dir:mods"
},
"type": "mod",
@ -2073,7 +2073,7 @@
{
"id": "mod-auracore",
"file": {
"link": "https://maven.tilera.xyz/dev/tilera/auracore/1.8.2/auracore-1.8.2.jar",
"link": "https://maven.tilera.xyz/dev/tilera/auracore/1.8.4/auracore-1.8.4.jar",
"installer": "internal.dir:mods"
},
"type": "mod",
@ -2098,6 +2098,20 @@
"included"
]
},
{
"id": "mod-redpower",
"file": {
"link": "https://maven.tilera.xyz/com/eloraam/redpower/RedPower/2.0pr8-dirty/RedPower-2.0pr8-dirty.jar",
"installer": "internal.dir:mods"
},
"type": "mod",
"options": [
"server",
"client",
"required",
"included"
]
},
{
"id": "forge",
"versions": "[1.7.10-10.13.4.1614-1.7.10]",

View file

@ -1,130 +1,130 @@
# Configuration file
##########################################################################################################
# Compatibility
#--------------------------------------------------------------------------------------------------------#
# Control the loading of various compatibility hooks. These settings are ignored unless the Compatibility module is installed.
##########################################################################################################
Compatibility {
# This makes things emit colored light. CLC is in beta state and may cause minor rendering glitches.
B:"ColoredLights Compat"=false
# This allows computers to connect to bundled cables with the RS API
B:"ComputerCraft: Bundled Cables"=true
# This allows pipes to recoginze MFR Deep storage units correctly.
B:"MFR: Deep Storage"=true
# This adds recipes to machines
B:"Thermal Expansion: Machine Recipes"=true
# This adds recipes to the smeltery.
B:"Tinkers Construct: Smeltery"=true
# This allows gem axes to work with treecapitator.
B:"Treecapitator: Gem Axe"=true
}
##########################################################################################################
# General Settings
#--------------------------------------------------------------------------------------------------------#
# Contains basic settings for the mod.
##########################################################################################################
"General Settings" {
# ID for the Jetpack Fuel Efficiency enchantment.
I:"Enchantment: Fuel Efficiency"=80
# If set to false, logic gates will not make sounds.
B:"Logic Sounds"=true
# Minimum amount of ticks the timer gates can be set to. Cannot be lower than 4.
I:"Minimum Timer Ticks"=4
# Ticks between router searches.
I:"Routed Pipes: Detection Frequency"=40
# Max number of pipes to explore when connecting to other routers.
I:"Routed Pipes: Max Detection Count"=100
# Maximum distance an item may aimlessly wander in a pipe before being erased. 0 for unlimited.
I:"Routed Pipes: Max Wander Distance"=0
# Number of active route table update threads.
I:"Routed Pipes: Update Threads"=4
# If set to true, sticks will be used instead of wood strips in framed wire recipes.
B:"Simple Framed Wire Recipe"=false
# If set to true, you will be alerted when a newer version of PR is available.
B:"Version Checking"=true
}
##########################################################################################################
# Render Settings
#--------------------------------------------------------------------------------------------------------#
# Contains settings related to how things render in-game.
##########################################################################################################
"Render Settings" {
# If set to false, flat wire textures will be used for logic gates. Significant performance improvement.
B:"3D Logic Wires"=true
# Number of lights to render, -1 for unlimited
I:"Light Halo Render Count"=-1
# If set to false, routed pipes will not render routing fx such as bubbles and lasers.
B:"Routed Pipe FX"=true
# If set to false, gates will be rendered in the TESR rather than the WorldRenderer.
B:"Static Gates"=true
# If set to false, wires will be rendered in the TESR rather than the WorldRenderer.
B:"Static Wires"=true
}
##########################################################################################################
# World Gen
#--------------------------------------------------------------------------------------------------------#
# Contains settings related to world gen. You can enable/disable each ore or strucure, change retro generation settings, and increase how rare something is by increasing the resistance value.
##########################################################################################################
"World Gen" {
B:"Copper Ore"=false
I:"Copper Ore resistance"=0
B:"Copper Ore retrogen"=false
B:"Deviating Lily"=true
I:"Deviating Lily resistance"=0
B:"Deviating Lily retrogen"=false
B:"Electrotine Ore"=true
I:"Electrotine Ore resistance"=0
B:"Electrotine Ore retrogen"=false
B:"Marble Caves"=true
I:"Marble Caves resistance"=0
B:"Marble Caves retrogen"=false
B:"Peridot Ore"=true
I:"Peridot Ore resistance"=0
B:"Peridot Ore retrogen"=false
B:"Ruby Ore"=true
I:"Ruby Ore resistance"=0
B:"Ruby Ore retrogen"=false
B:"Sapphire Ore"=true
I:"Sapphire Ore resistance"=0
B:"Sapphire Ore retrogen"=false
B:"Silver Ore"=false
I:"Silver Ore resistance"=0
B:"Silver Ore retrogen"=false
B:"Spreading Moss"=true
B:"Tin Ore"=false
I:"Tin Ore resistance"=0
B:"Tin Ore retrogen"=false
I:"Volcano resistance"=0
B:"Volcano retrogen"=false
B:Volcanos=true
}
# Configuration file
##########################################################################################################
# Compatibility
#--------------------------------------------------------------------------------------------------------#
# Control the loading of various compatibility hooks. These settings are ignored unless the Compatibility module is installed.
##########################################################################################################
Compatibility {
# This makes things emit colored light. CLC is in beta state and may cause minor rendering glitches.
B:"ColoredLights Compat"=false
# This allows computers to connect to bundled cables with the RS API
B:"ComputerCraft: Bundled Cables"=true
# This allows pipes to recoginze MFR Deep storage units correctly.
B:"MFR: Deep Storage"=true
# This adds recipes to machines
B:"Thermal Expansion: Machine Recipes"=true
# This adds recipes to the smeltery.
B:"Tinkers Construct: Smeltery"=true
# This allows gem axes to work with treecapitator.
B:"Treecapitator: Gem Axe"=true
}
##########################################################################################################
# General Settings
#--------------------------------------------------------------------------------------------------------#
# Contains basic settings for the mod.
##########################################################################################################
"General Settings" {
# ID for the Jetpack Fuel Efficiency enchantment.
I:"Enchantment: Fuel Efficiency"=85
# If set to false, logic gates will not make sounds.
B:"Logic Sounds"=true
# Minimum amount of ticks the timer gates can be set to. Cannot be lower than 4.
I:"Minimum Timer Ticks"=4
# Ticks between router searches.
I:"Routed Pipes: Detection Frequency"=40
# Max number of pipes to explore when connecting to other routers.
I:"Routed Pipes: Max Detection Count"=100
# Maximum distance an item may aimlessly wander in a pipe before being erased. 0 for unlimited.
I:"Routed Pipes: Max Wander Distance"=0
# Number of active route table update threads.
I:"Routed Pipes: Update Threads"=4
# If set to true, sticks will be used instead of wood strips in framed wire recipes.
B:"Simple Framed Wire Recipe"=false
# If set to true, you will be alerted when a newer version of PR is available.
B:"Version Checking"=true
}
##########################################################################################################
# Render Settings
#--------------------------------------------------------------------------------------------------------#
# Contains settings related to how things render in-game.
##########################################################################################################
"Render Settings" {
# If set to false, flat wire textures will be used for logic gates. Significant performance improvement.
B:"3D Logic Wires"=true
# Number of lights to render, -1 for unlimited
I:"Light Halo Render Count"=-1
# If set to false, routed pipes will not render routing fx such as bubbles and lasers.
B:"Routed Pipe FX"=true
# If set to false, gates will be rendered in the TESR rather than the WorldRenderer.
B:"Static Gates"=true
# If set to false, wires will be rendered in the TESR rather than the WorldRenderer.
B:"Static Wires"=true
}
##########################################################################################################
# World Gen
#--------------------------------------------------------------------------------------------------------#
# Contains settings related to world gen. You can enable/disable each ore or strucure, change retro generation settings, and increase how rare something is by increasing the resistance value.
##########################################################################################################
"World Gen" {
B:"Copper Ore"=false
I:"Copper Ore resistance"=0
B:"Copper Ore retrogen"=false
B:"Deviating Lily"=true
I:"Deviating Lily resistance"=0
B:"Deviating Lily retrogen"=false
B:"Electrotine Ore"=true
I:"Electrotine Ore resistance"=0
B:"Electrotine Ore retrogen"=false
B:"Marble Caves"=true
I:"Marble Caves resistance"=0
B:"Marble Caves retrogen"=false
B:"Peridot Ore"=true
I:"Peridot Ore resistance"=0
B:"Peridot Ore retrogen"=false
B:"Ruby Ore"=true
I:"Ruby Ore resistance"=0
B:"Ruby Ore retrogen"=false
B:"Sapphire Ore"=true
I:"Sapphire Ore resistance"=0
B:"Sapphire Ore retrogen"=false
B:"Silver Ore"=false
I:"Silver Ore resistance"=0
B:"Silver Ore retrogen"=false
B:"Spreading Moss"=true
B:"Tin Ore"=false
I:"Tin Ore resistance"=0
B:"Tin Ore retrogen"=false
I:"Volcano resistance"=0
B:"Volcano retrogen"=false
B:Volcanos=true
}

View file

@ -1 +1 @@
{"version":"v3.2.0","giteaInstance":"https://git.tilera.org","owner":"tilera","repository":"testcraft"}
{"version":"v3.3.0","giteaInstance":"https://git.tilera.org","owner":"tilera","repository":"testcraft"}