Skip to content

Commit

Permalink
[AR] update to v3.4. BREAK UPDATE WARNING
Browse files Browse the repository at this point in the history
  • Loading branch information
liplum committed May 9, 2022
1 parent 31dd2ef commit 3192e6f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
20 changes: 10 additions & 10 deletions main/src/net/liplum/registries/CioBlocks.kt
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ object CioBlocks : ContentTable {
size = 3
buildCostMultiplier = 1.5f
craftEffect = Fx.smelt
itemCapacity = 100
itemCapacity = 60
consumes.items( //Total:100
ItemStack(Items.copper, 50), //50%
ItemStack(Items.silicon, 20), //20%
Expand Down Expand Up @@ -291,7 +291,7 @@ object CioBlocks : ContentTable {
prism = Prism("prism").apply {
requirements(
Category.turret, BuildVisibility.shown, arrayOf(
ItemStack(CioItems.ic, 7),
ItemStack(CioItems.ic, 10),
ItemStack(Items.copper, 250),
ItemStack(Items.metaglass, 350),
ItemStack(Items.titanium, 50),
Expand Down Expand Up @@ -423,7 +423,7 @@ object CioBlocks : ContentTable {
smartUnloader = SmartUnloader("smart-unloader").apply {
requirements(
Category.distribution, BuildVisibility.shown, arrayOf(
ItemStack(CioItems.ic, 4),
ItemStack(CioItems.ic, 5),
ItemStack(Items.lead, 350),
ItemStack(Items.silicon, 210),
ItemStack(Items.graphite, 150),
Expand All @@ -438,7 +438,7 @@ object CioBlocks : ContentTable {
streamClient = StreamClient("stream-client").apply {
requirements(
Category.liquid, BuildVisibility.shown, arrayOf(
ItemStack(CioItems.ic, 1),
ItemStack(CioItems.ic, 2),
ItemStack(Items.metaglass, 40),
ItemStack(Items.silicon, 20),
ItemStack(Items.graphite, 40),
Expand All @@ -454,7 +454,7 @@ object CioBlocks : ContentTable {
streamHost = StreamHost("stream-host").apply {
requirements(
Category.liquid, BuildVisibility.shown, arrayOf(
ItemStack(CioItems.ic, 4),
ItemStack(CioItems.ic, 5),
ItemStack(Items.lead, 100),
ItemStack(Items.metaglass, 600),
ItemStack(Items.silicon, 80),
Expand Down Expand Up @@ -498,7 +498,7 @@ object CioBlocks : ContentTable {
jammer = Jammer("jammer").apply {
requirements(
Category.turret, BuildVisibility.shown, arrayOf(
ItemStack(CioItems.ic, 6),
ItemStack(CioItems.ic, 8),
ItemStack(Items.lead, 350),
ItemStack(Items.thorium, 200),
ItemStack(Items.surgeAlloy, 150),
Expand Down Expand Up @@ -539,7 +539,7 @@ object CioBlocks : ContentTable {
cyberionMixer = LiquidConverter("cyberion-mixer").apply {
requirements(
Category.crafting, BuildVisibility.shown, arrayOf(
ItemStack(CioItems.ic, 2),
ItemStack(CioItems.ic, 4),
ItemStack(Items.lead, 100),
ItemStack(Items.titanium, 100),
ItemStack(Items.metaglass, 50),
Expand All @@ -559,7 +559,7 @@ object CioBlocks : ContentTable {
holoProjector = HoloProjector("holo-projector").apply {
requirements(
Category.units, BuildVisibility.shown, arrayOf(
ItemStack(CioItems.ic, 14),
ItemStack(CioItems.ic, 16),
ItemStack(Items.silicon, 220),
ItemStack(Items.graphite, 300),
ItemStack(Items.metaglass, 500),
Expand Down Expand Up @@ -684,7 +684,7 @@ object CioBlocks : ContentTable {
requirements(
Category.turret, BuildVisibility.shown, arrayOf(
ItemStack(CioItems.ic, 2),
ItemStack(Items.pyratite, 5),
ItemStack(Items.pyratite, 15),
ItemStack(Items.plastanium, 10),
ItemStack(Items.metaglass, 40),
ItemStack(Items.copper, 60),
Expand Down Expand Up @@ -760,7 +760,7 @@ object CioBlocks : ContentTable {
// TODO: [Bug] Power use doesn't work
range = 145f
size = 2
damage = 5f
damage = 8f
health = 300 * size * size
}
}
Expand Down
4 changes: 2 additions & 2 deletions main/src/net/liplum/registries/CioBulletTypes.kt
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ object CioBulletTypes : ContentTable {

override fun load() {
virus = BasicBulletType(
2.5f, 45f, "bullet"
2.5f, 50f, "bullet"
).apply {
width = 10f
height = 12f
Expand All @@ -68,7 +68,7 @@ object CioBulletTypes : ContentTable {
}

radiationInterference = ShaderBasicBulletT<TrShader>(
2.3f, 28f, "bullet"
2.3f, 30f, "bullet"
).apply {
shader = { SD.TvStatic }
width = 15f
Expand Down
2 changes: 1 addition & 1 deletion mod.hjson
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

GitHub: [#42a5f5[]]github.com/liplum/CyberIO[[]]
'''
"version": 3,
"version": 3.4,
"minGameVersion": 135,
"dependencies": [],
"hidden": false,
Expand Down
6 changes: 3 additions & 3 deletions update
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
3.3
Client:3.3
Server:3.3
3.4
Client:3.4
Server:3.4

0 comments on commit 3192e6f

Please sign in to comment.