first commit (checkpoint before destruction)

This commit is contained in:
2020-04-21 19:29:46 +02:00
commit e5a415ddd5
24 changed files with 1265 additions and 0 deletions
@@ -0,0 +1,10 @@
{
"variants": {
"": [
{ "model": "block/bedrock" },
{ "model": "block/bedrock_mirrored" },
{ "model": "block/bedrock", "y": 180 },
{ "model": "block/bedrock_mirrored", "y": 180 }
]
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

@@ -0,0 +1,3 @@
{
"item.simple_creator.test_item": "Forbidden Fruit"
}
@@ -0,0 +1,3 @@
{
"parent": "block/bedrock"
}
@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "item/apple"
}
}
@@ -0,0 +1,15 @@
{
"material": "LAVA",
"mapColor" :
"soundGroup": "wool",
"dropTableId": "minecraft:blocks/diamond_ore",
"collidable": true,
"lightLevel": 1,
"explosionResistance": 5.0,
"hardness": 0.5,
"slipperiness": 0.6,
"slowDownMultiplier": 2.0,
"jumpVelocityMultiplier": 2.0,
"opaque": true,
"group": "food"
}
@@ -0,0 +1,23 @@
{
"group" :"food",
"durability" : 15,
"stackSize": 25,
"rarity" :"rare",
"food": {
"hunger": 4,
"saturationModifier": 0.3,
"isAlwaysEdible": true,
"isWolfFood": false,
"isFast": true,
"effects": [
{
"effect": "minecraft:poison",
"duration": 200,
"amplifier": 1,
"ambient": false,
"visible": true,
"chance": 1.0
}
]
}
}
@@ -0,0 +1,19 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"name": "simple_creator:test_block"
}
]
}
]
}
+27
View File
@@ -0,0 +1,27 @@
{
"schemaVersion": 1,
"id": "simple_creator",
"version": "${version}",
"name": "Simple Item/Block Creator",
"description": "Makes it possible to add simple blocks/items via datapacks.",
"authors": [
"QuImUfu"
],
"contributors": [],
"contact": {},
"license": "MIT",
"icon": "assets/simple_creator/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"quimufu.simple_creator.SimpleCreatorMod"
],
"client": [],
"server": []
},
"mixins": [],
"depends": {
"fabricloader": ">=0.4.0",
"fabric": "*"
}
}