Skip to content

Commit

Permalink
Low chair blocks, recipes, data.
Browse files Browse the repository at this point in the history
  • Loading branch information
a0a7 committed Oct 19, 2023
1 parent 2d1638a commit 84e7dd6
Show file tree
Hide file tree
Showing 466 changed files with 46,928 additions and 13,094 deletions.
Binary file modified .gradle/8.1.1/checksums/checksums.lock
Binary file not shown.
Binary file modified .gradle/8.1.1/checksums/md5-checksums.bin
Binary file not shown.
Binary file modified .gradle/8.1.1/checksums/sha1-checksums.bin
Binary file not shown.
Binary file modified .gradle/8.1.1/executionHistory/executionHistory.bin
Binary file not shown.
Binary file modified .gradle/8.1.1/executionHistory/executionHistory.lock
Binary file not shown.
Binary file modified .gradle/8.1.1/fileHashes/fileHashes.bin
Binary file not shown.
Binary file modified .gradle/8.1.1/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified .gradle/8.1.1/fileHashes/resourceHashesCache.bin
Binary file not shown.
Binary file modified .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
Binary file modified .gradle/file-system.probe
Binary file not shown.
5 changes: 0 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,6 @@ repositories {
}

dependencies {
// Specify the version of Minecraft to use.
// Any artifact can be supplied so long as it has a "userdev" classifier artifact and is a compatible patcher artifact.
// The "userdev" classifier will be requested and setup by NeoGradle.
// If the group id is "net.minecraft" and the artifact id is one of ["client", "server", "joined"],
// then special handling is done to allow a setup of a vanilla dependency without the use of an external repository.
minecraft "net.neoforged:forge:${minecraft_version}-${neo_version}"

implementation fg.deobf("com.simibubi.create:create-${create_minecraft_version}:${create_version}:slim") { transitive = false }
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion build/downloadMCMeta/version.json

Large diffs are not rendered by default.

435 changes: 360 additions & 75 deletions build/reobfJar/log.txt

Large diffs are not rendered by default.

Binary file modified build/reobfJar/output.jar
Binary file not shown.
437 changes: 361 additions & 76 deletions build/reobfJarJar/log.txt

Large diffs are not rendered by default.

Binary file modified build/reobfJarJar/output.jar
Binary file not shown.
64 changes: 16 additions & 48 deletions build/resources/main/META-INF/mods.toml
Original file line number Diff line number Diff line change
@@ -1,76 +1,44 @@
# This is an example mods.toml file. It contains the data relating to the loading mods.
# There are several mandatory fields (#mandatory), and many more that are optional (#optional).
# The overall format is standard TOML format, v0.5.0.
# Note that there are a couple of TOML lists in this file.
# Find more information on toml format here: https://github.com/toml-lang/toml
# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml
modLoader="javafml" #mandatory
# A version range to match for said mod loader - for regular FML @Mod it will be the the FML version. This is currently 47.
loaderVersion="[47,)" #mandatory
# The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties.
# Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here.
license="MIT License"
loaderVersion = "[40,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions.
license="MIT"
# A URL to refer people to when problems occur with this mod
#issueTrackerURL="https://change.me.to.your.issue.tracker.example.invalid/" #optional
# A list of mods - how many allowed here is determined by the individual mod loader
issueTrackerURL = "https://github.com/sudolev/CreateInteriorsMod/issues"
[[mods]] #mandatory
# The modid of the mod
modId="interiors" #mandatory
# The version number of the mod
version="0.3.1-1.20.2" #mandatory
# A display name for the mod
version = "0.4" #mandatory
displayName="Create: Interiors" #mandatory
# A URL to query for updates for this mod. See the JSON update specification https://docs.neoforged.net/docs/misc/updatechecker/
#updateJSONURL="https://change.me.example.invalid/updates.json" #optional
# A URL for the "homepage" for this mod, displayed in the mod UI
#displayURL="https://change.me.to.your.mods.homepage.example.invalid/" #optional
displayURL = "https://sudolev.github.io/CreateInteriorsMod/"
# A file name (in the root of the mod JAR) containing a logo for display
#logoFile="examplemod.png" #optional
# A text field displayed in the mod UI
#credits="" #optional
# A text field displayed in the mod UI
authors="Alexander Weimer" #optional
# Display Test controls the display for your mod in the server connection screen
# MATCH_VERSION means that your mod will cause a red X if the versions on client and server differ. This is the default behaviour and should be what you choose if you have server and client elements to your mod.
# IGNORE_SERVER_VERSION means that your mod will not cause a red X if it's present on the server but not on the client. This is what you should use if you're a server only mod.
# IGNORE_ALL_VERSION means that your mod will not cause a red X if it's present on the client or the server. This is a special case and should only be used if your mod has no server component.
# NONE means that no display test is set on your mod. You need to do this yourself, see IExtensionPoint.DisplayTest for more information. You can define any scheme you wish with this value.
# IMPORTANT NOTE: this is NOT an instruction as to which environments (CLIENT or DEDICATED SERVER) your mod loads on. Your mod should load (and maybe do nothing!) whereever it finds itself.
#displayTest="MATCH_VERSION" # MATCH_VERSION is the default if nothing is specified (#optional)
authors = "sudolev" #optional

# The description text for the mod (multi line!) (#mandatory)
description='''A complement to the Create mod that adds 19 new, functional blocks for interior design.'''
description='''
Create: Interiors is an addon for Create that extends Create's furnishing options.
'''
# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional.
[[dependencies.interiors]] #optional
# the modid of the dependency
modId="forge" #mandatory
# Does this dependency have to exist - if not, ordering below must be specified
mandatory=true #mandatory
# The version range of the dependency
versionRange="[47.1,)" #mandatory
# An ordering relationship for the dependency - BEFORE or AFTER required if the dependency is not mandatory
# BEFORE - This mod is loaded BEFORE the dependency
# AFTER - This mod is loaded AFTER the dependency
versionRange="[47.1,)" #mandatory
# An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory
ordering="NONE"
# Side this dependency is applied on - BOTH, CLIENT, or SERVER
# Side this dependency is applied on - BOTH, CLIENT or SERVER
side="BOTH"
# Here's another dependency
[[dependencies.interiors]]
modId="minecraft"
mandatory=true
# This version range declares a minimum of the current minecraft version up to but not including the next major version
versionRange="[1.20,1.20.2)"
ordering="NONE"
# This version range declares a minimum of the current minecraft version up to but not including the next major version
versionRange="[1.20,1.20.2)"
ordering="NONE"
side="BOTH"
[[dependencies.interiors]]
modId="create"
mandatory=true
versionRange="[0.5.1.c,)"
ordering="NONE"
side="BOTH"

# Features are specific properties of the game environment, that you may want to declare you require. This example declares
# that your mod requires GL version 3.2 or higher. Other features will be added. They are side aware so declaring this won't
# stop your mod loading on the server for example.
#[features.interiors]
#openGLVersion="[3.2,)"
side="BOTH"
19 changes: 18 additions & 1 deletion build/resources/main/assets/interiors/lang/de_de.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,23 @@
"block.interiors.chair.tooltip.condition2": "Use Wrench on stuhl",
"block.interiors.chair.tooltip.behaviour2": "Cycles _Chair_ armrest configurations.",
"block.interiors.seatwood_planks.tooltip": "SEATWOOD_PLANKS",
"block.interiors.seatwood_planks.tooltip.summary": "Not a very useful block on its own, but useful together with _Copycat_ blocks."
"block.interiors.seatwood_planks.tooltip.summary": "Not a very useful block on its own, but useful together with _Copycat_ blocks.",
"block.interiors.kelp_floor_chair": "Kelp Low Chair",
"block.interiors.white_floor_chair": "White Low Chair",
"block.interiors.light_gray_floor_chair": "Light Gray Low Chair",
"block.interiors.gray_floor_chair": "Gray Low Chair",
"block.interiors.black_floor_chair": "Black Low Chair",
"block.interiors.brown_floor_chair": "Brown Low Chair",
"block.interiors.red_floor_chair": "Red Low Chair",
"block.interiors.orange_floor_chair": "Orange Low Chair",
"block.interiors.yellow_floor_chair": "Yellow Low Chair",
"block.interiors.lime_floor_chair": "Lime Low Chair",
"block.interiors.green_floor_chair": "Green Low Chair",
"block.interiors.cyan_floor_chair": "Cyan Low Chair",
"block.interiors.light_blue_floor_chair": "Light Blue Low Chair",
"block.interiors.blue_floor_chair": "Blue Low Chair",
"block.interiors.purple_floor_chair": "Purple Low Chair",
"block.interiors.magenta_floor_chair": "Magenta Low Chair",
"block.interiors.pink_floor_chair": "Pink Low Chair"

}
18 changes: 18 additions & 0 deletions build/resources/main/assets/interiors/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

"block.interiors.kelp_seat": "Kelp Seat",
"block.interiors.kelp_chair": "Kelp Chair",
"block.interiors.kelp_floor_chair": "Kelp Low Chair",

"block.interiors.seatwood_planks": "Seatwood Planks",

"block.interiors.white_chair": "White Chair",
Expand All @@ -23,6 +25,22 @@
"block.interiors.purple_chair": "Purple Chair",
"block.interiors.magenta_chair": "Magenta Chair",
"block.interiors.pink_chair": "Pink Chair",
"block.interiors.white_floor_chair": "White Low Chair",
"block.interiors.light_gray_floor_chair": "Light Gray Low Chair",
"block.interiors.gray_floor_chair": "Gray Low Chair",
"block.interiors.black_floor_chair": "Black Low Chair",
"block.interiors.brown_floor_chair": "Brown Low Chair",
"block.interiors.red_floor_chair": "Red Low Chair",
"block.interiors.orange_floor_chair": "Orange Low Chair",
"block.interiors.yellow_floor_chair": "Yellow Low Chair",
"block.interiors.lime_floor_chair": "Lime Low Chair",
"block.interiors.green_floor_chair": "Green Low Chair",
"block.interiors.cyan_floor_chair": "Cyan Low Chair",
"block.interiors.light_blue_floor_chair": "Light Blue Low Chair",
"block.interiors.blue_floor_chair": "Blue Low Chair",
"block.interiors.purple_floor_chair": "Purple Low Chair",
"block.interiors.magenta_floor_chair": "Magenta Low Chair",
"block.interiors.pink_floor_chair": "Pink Low Chair",

"block.interiors.chair.tooltip": "CHAIR",
"block.interiors.chair.tooltip.summary": "Sit yourself down and enjoy the ride just a little more! Will anchor a player onto a moving _contraption_. An appealing option for static furniture too! Comes in a variety of colours.",
Expand Down
20 changes: 19 additions & 1 deletion build/resources/main/assets/interiors/lang/ko_kr.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

"block.interiors.kelp_seat": "켈프 좌석",
"block.interiors.kelp_chair": "켈프 의자",
"block.interiors.kelp_floor_chair": "켈프 좌식 의자",

"block.interiors.seatwood_planks": "좌석목재 판자",

"block.interiors.white_chair": "하얀색 의자",
Expand All @@ -14,7 +16,7 @@
"block.interiors.brown_chair": "갈색 의자",
"block.interiors.red_chair": "빨간색 의자",
"block.interiors.orange_chair": "주황색 의자",
"block.interiors.yellow_chair": "노란색 의자",
"block.interiors.yelfloor_chair": "노란색 의자",
"block.interiors.lime_chair": "연두색 의자",
"block.interiors.green_chair": "초록색 의자",
"block.interiors.cyan_chair": "청록색 의자",
Expand All @@ -23,6 +25,22 @@
"block.interiors.purple_chair": "보라색 의자",
"block.interiors.magenta_chair": "자홍색 의자",
"block.interiors.pink_chair": "분홍색 의자",
"block.interiors.white_floor_chair": "하얀색 좌식 의자",
"block.interiors.light_gray_floor_chair": "회백색 좌식 의자",
"block.interiors.gray_floor_chair": "회색 좌식 의자",
"block.interiors.black_floor_chair": "검은색 좌식 의자",
"block.interiors.brown_floor_chair": "갈색 좌식 의자",
"block.interiors.red_floor_chair": "빨간색 좌식 의자",
"block.interiors.orange_floor_chair": "주황색 좌식 의자",
"block.interiors.yellow_floor_chair": "노란색 좌식 의자",
"block.interiors.lime_floor_chair": "연두색 좌식 의자",
"block.interiors.green_floor_chair": "초록색 좌식 의자",
"block.interiors.cyan_floor_chair": "청록색 좌식 의자",
"block.interiors.light_blue_floor_chair": "하늘색 좌식 의자",
"block.interiors.blue_floor_chair": "파란색 좌식 의자",
"block.interiors.purple_floor_chair": "보라색 좌식 의자",
"block.interiors.magenta_floor_chair": "자홍색 좌식 의자",
"block.interiors.pink_floor_chair": "분홍색 좌식 의자",

"block.interiors.chair.tooltip": "의자",
"block.interiors.chair.tooltip.summary": "앉아서 타는 탈 것을 조금 더 즐겨보세요! 플레이어를 움직이는 _구조물_에 고정시킵니다. 일반 가구로서도 매력적인 옵션입니다! 다양한 색상으로 만나보세요.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,25 @@
"rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 16]},
"faces": {
"north": {"uv": [0, 11, 16, 16], "texture": "#0"},
"east": {"uv": [0, 3, 8, 8], "texture": "#5"},
"east": {
"uv": [
0,
3,
8,
8
],
"texture": "#5"
},
"south": {"uv": [0, 11, 16, 16], "texture": "#0"},
"west": {"uv": [0, 3, 8, 8], "texture": "#5"},
"west": {
"uv": [
0,
3,
8,
8
],
"texture": "#5"
},
"up": {"uv": [6, 15, 7, 16], "rotation": 270, "texture": "#7"},
"down": {"uv": [4, 0, 12, 16], "rotation": 90, "texture": "#0"}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,25 @@
"rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 16]},
"faces": {
"north": {"uv": [0, 11, 16, 16], "texture": "#0"},
"east": {"uv": [0, 3, 8, 8], "texture": "#5"},
"east": {
"uv": [
0,
3,
8,
8
],
"texture": "#5"
},
"south": {"uv": [0, 11, 16, 16], "texture": "#0"},
"west": {"uv": [0, 3, 8, 8], "texture": "#5"},
"west": {
"uv": [
0,
3,
8,
8
],
"texture": "#5"
},
"up": {"uv": [6, 15, 7, 16], "rotation": 270, "texture": "#7"},
"down": {"uv": [4, 0, 12, 16], "rotation": 90, "texture": "#0"}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,25 @@
"rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 16]},
"faces": {
"north": {"uv": [0, 11, 16, 16], "texture": "#0"},
"east": {"uv": [0, 3, 8, 8], "texture": "#5"},
"east": {
"uv": [
0,
3,
8,
8
],
"texture": "#5"
},
"south": {"uv": [0, 11, 16, 16], "texture": "#0"},
"west": {"uv": [0, 3, 8, 8], "texture": "#5"},
"west": {
"uv": [
0,
3,
8,
8
],
"texture": "#5"
},
"up": {"uv": [6, 15, 7, 16], "rotation": 270, "texture": "#7"},
"down": {"uv": [4, 0, 12, 16], "rotation": 90, "texture": "#0"}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,25 @@
"rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 16]},
"faces": {
"north": {"uv": [0, 11, 16, 16], "texture": "#0"},
"east": {"uv": [0, 3, 8, 8], "texture": "#5"},
"east": {
"uv": [
0,
3,
8,
8
],
"texture": "#5"
},
"south": {"uv": [0, 11, 16, 16], "texture": "#0"},
"west": {"uv": [0, 3, 8, 8], "texture": "#5"},
"west": {
"uv": [
0,
3,
8,
8
],
"texture": "#5"
},
"up": {"uv": [6, 15, 7, 16], "rotation": 270, "texture": "#7"},
"down": {"uv": [4, 0, 12, 16], "rotation": 90, "texture": "#0"}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,25 @@
"rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 16]},
"faces": {
"north": {"uv": [0, 11, 16, 16], "texture": "#0"},
"east": {"uv": [0, 3, 8, 8], "texture": "#5"},
"east": {
"uv": [
0,
3,
8,
8
],
"texture": "#5"
},
"south": {"uv": [0, 11, 16, 16], "texture": "#0"},
"west": {"uv": [0, 3, 8, 8], "texture": "#5"},
"west": {
"uv": [
0,
3,
8,
8
],
"texture": "#5"
},
"up": {"uv": [6, 15, 7, 16], "rotation": 270, "texture": "#7"},
"down": {"uv": [4, 0, 12, 16], "rotation": 90, "texture": "#0"}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,25 @@
"rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 16]},
"faces": {
"north": {"uv": [0, 11, 16, 16], "texture": "#0"},
"east": {"uv": [0, 3, 8, 8], "texture": "#5"},
"east": {
"uv": [
0,
3,
8,
8
],
"texture": "#5"
},
"south": {"uv": [0, 11, 16, 16], "texture": "#0"},
"west": {"uv": [0, 3, 8, 8], "texture": "#5"},
"west": {
"uv": [
0,
3,
8,
8
],
"texture": "#5"
},
"up": {"uv": [6, 15, 7, 16], "rotation": 270, "texture": "#7"},
"down": {"uv": [4, 0, 12, 16], "rotation": 90, "texture": "#0"}
}
Expand Down
Loading

0 comments on commit 84e7dd6

Please sign in to comment.