添加Mod,详情见readme

更换EMI为REI
游戏版本重命名为整合包名
This commit is contained in:
2023-09-12 18:09:47 +08:00
parent 3b32c59152
commit dbd3b0b5df
397 changed files with 2875 additions and 1333 deletions

View File

@@ -0,0 +1,15 @@
Find out more info on the website: https://kubejs.com/
Directory information:
assets - Acts as a resource pack, you can put any client resources in here, like textures, models, etc. Example: assets/kubejs/textures/item/test_item.png
data - Acts as a datapack, you can put any server resources in here, like loot tables, functions, etc. Example: data/kubejs/loot_tables/blocks/test_block.json
startup_scripts - Scripts that get loaded once during game startup - Used for adding items and other things that can only happen while the game is loading (Can be reloaded with /kubejs reload_startup_scripts, but it may not work!)
server_scripts - Scripts that get loaded every time server resources reload - Used for modifying recipes, tags, loot tables, and handling server events (Can be reloaded with /reload)
client_scripts - Scripts that get loaded every time client resources reload - Used for JEI events, tooltips and other client side things (Can be reloaded with F3+T)
config - KubeJS config storage. This is also the only directory that scripts can access other than world directory
exported - Data dumps like texture atlases end up here
You can find type-specific logs in logs/kubejs/ directory

Binary file not shown.

After

Width:  |  Height:  |  Size: 247 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 372 B

View File

@@ -0,0 +1,6 @@
// priority: 0
// Visit the wiki for more info - https://kubejs.com/
console.info('Hello, World! (Loaded client scripts)')

View File

@@ -0,0 +1,15 @@
#KubeJS Client Properties
#Thu Sep 07 13:18:42 CST 2023
backgroundColor=2E3440
barBorderColor=ECEFF4
exportAtlases=false
menuBackgroundBrightness=64
disableRecipeBook=false
title=
barColor=ECEFF4
overrideColors=false
fmlLogColor=ECEFF4
showTagNames=false
fmlMemoryColor=ECEFF4
menuBackgroundScale=32.0
menuInnerBackgroundBrightness=32

View File

@@ -0,0 +1,13 @@
#KubeJS Common Properties
#Thu Sep 07 13:18:43 CST 2023
matchJsonRecipes=true
allowAsyncStreams=true
announceReload=true
startupErrorGUI=true
serverOnly=false
hideServerScriptErrors=false
saveDevPropertiesInConfig=false
packmode=default
ignoreCustomUniqueRecipeIds=false
creativeModeTabIcon=minecraft\:purple_dye
startupErrorReportUrl=

View File

@@ -0,0 +1,9 @@
// priority: 0
// Visit the wiki for more info - https://kubejs.com/
console.info('Hello, World! (Loaded server scripts)')
ServerEvents.recipes(event => {
})

View File

@@ -0,0 +1,9 @@
//挖矿与砍杀
ServerEvents.recipes(event => {
//添加合成
event.shaped(Item.of('mmorpg:stone/1',2),['AAA','ABA','AAA'],{A:'mmorpg:stone/0',B:'mmorpg:stone/1'})
event.shaped(Item.of('mmorpg:stone/2',2),['AAA','ABA','AAA'],{A:'mmorpg:stone/1',B:'mmorpg:stone/2'})
event.shaped(Item.of('mmorpg:stone/3',2),['AAA','ABA','AAA'],{A:'mmorpg:stone/2',B:'mmorpg:stone/3'})
event.shaped(Item.of('mmorpg:stone/4',2),['AAA','ABA','AAA'],{A:'mmorpg:stone/3',B:'mmorpg:stone/4'})
event.shaped(Item.of('mmorpg:stone/5',2),['AAA','ABA','AAA'],{A:'mmorpg:stone/4',B:'mmorpg:stone/5'})
})

View File

@@ -0,0 +1,5 @@
//暮色森林
ServerEvents.recipes(event => {
//移除合成
event.remove({output:'twilightforest:uncrafting_table'})
})

View File

@@ -0,0 +1,6 @@
// priority: 0
// Visit the wiki for more info - https://kubejs.com/
console.info('Hello, World! (Loaded startup scripts)')