added aspects, added dendro

This commit is contained in:
missingbinary
2021-12-13 11:14:52 -04:00
parent 2587a6a79e
commit 5de75636bd
128 changed files with 5694 additions and 3349 deletions

View File

@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "aspects:item/geo_diamond"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "aspects:item/ordo_star"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "aspects:item/perditio_bone"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@@ -0,0 +1,4 @@
summon iron_golem ~ ~ ~ {OnGround:1b,Glowing:1b,Team:"Dendro",PlayerCreated:1b,ActiveEffects:[{Id:5b,Amplifier:1b,Duration:200,ShowParticles:0b}],Attributes:[{Name:generic.max_health,Base:80}]}
summon iron_golem ~ ~ ~ {OnGround:1b,Glowing:1b,Team:"Dendro",PlayerCreated:1b,ActiveEffects:[{Id:5b,Amplifier:1b,Duration:200,ShowParticles:0b}],Attributes:[{Name:generic.max_health,Base:80}]}
playsound entity.firework_rocket.twinkle neutral @s
particle spore_blossom_air ~ ~ ~ ~ ~ ~ 3 20

View File

@@ -36,11 +36,21 @@
"origins": [
"aspects:human",
"aspects:tempus",
"aspects:avis",
"aspects:sophos",
"icarus:icarae"
"aspects:avis"
]
}
},
{
"condition": {
"type":"origins:origin",
"origin":"aspects:geo",
"layer":"aspects:elements"
},
"origins": [
"aspects:human",
"aspects:dendro",
"idkarockthingmining"
]
}
],
"name": "Type",

View File

@@ -0,0 +1,16 @@
{
"powers": [
"aspects:flower_regen",
"aspects:bonemeal",
"aspects:grass_speed",
"aspects:dendro_primary",
"aspects:dendro_secondary",
"aspects:poison_resistance",
"aspects:suspicious_substance"
],
"icon": {
"item": "minecraft:wheat_seeds"
},
"name": "Dendro",
"description": "Lovers of art, nature and all things beautiful, Dendro types certainly are a unique breed."
}

View File

@@ -0,0 +1,14 @@
{
"powers": [
"aspects:heavy_as_stone",
"aspects:resistance",
"aspects:explosion_damage",
"aspects:earthborn",
"aspects:deepdweller"
],
"icon": {
"item": "aspects:geo_diamond"
},
"name": "Geo",
"description": "Down-to-earth and grounded, Geo users are all about stability and functionality."
}

View File

@@ -0,0 +1,15 @@
{
"powers": [
"aspects:holy_light",
"aspects:positive_influence",
"aspects:darkness_damage",
"aspects:night_aversion",
"aspects:holy",
"aspects:lightborn"
],
"icon": {
"item": "aspects:ordo_star"
},
"name": "Ordo",
"description": "Vigilant and organized, Ordo users are kind, diligent and natural leaders."
}

View File

@@ -0,0 +1,14 @@
{
"powers": [
"aspects:void",
"aspects:undead",
"aspects:night_strength",
"aspects:day_aversion",
"aspects:voidborn"
],
"icon": {
"item": "aspects:perditio_bone"
},
"name": "Perditio",
"description": "Shrouded in darkness and mystery, Perditio users are unique magical beings said to be derived from the void."
}

View File

@@ -10,5 +10,5 @@
"item": "aspects:pyro_fire"
},
"name": "Pyro",
"description": "fire go weeee"
"description": "Pyro users are certainly lively. The rebels of the group, they are always brimming with new ideas and drive for adventure."
}

View File

@@ -0,0 +1,692 @@
{
"name": "Natural Growth",
"description": "When you sneak and press the use button, you can grow the block you are looking at.",
"type": "origins:multiple",
"bonemeal":
{
"type": "origins:action_on_block_use",
"block_action":
{
"type": "origins:bonemeal",
"effects": true
},
"condition":
{
"type": "origins:sneaking"
}
},
"nether_wart":
{
"type": "origins:action_on_block_use",
"block_action":
{
"type": "origins:if_else",
"condition":
{
"type": "origins:and",
"conditions":
[
{
"type": "origins:block",
"block": "nether_wart"
},
{
"type": "origins:block_state",
"property": "age",
"comparison": "==",
"compare_to": 2
}
]
},
"if_action":
{
"type": "origins:and",
"actions":
[
{
"type": "origins:execute_command",
"command": "setblock ~ ~ ~ minecraft:nether_wart[age=3]",
"permission_level": 4
},
{
"type": "origins:execute_command",
"command": "particle minecraft:composter ~ ~ ~ .3 .3 .3 0 10 normal",
"permission_level": 4
},
{
"type": "origins:execute_command",
"command": "playsound minecraft:item.bone_meal.use player @a[distance=..32] ~ ~ ~ .5 1",
"permission_level": 4
}
]
},
"else_action":
{
"type": "origins:if_else",
"condition":
{
"type": "origins:and",
"conditions":
[
{
"type": "origins:block",
"block": "nether_wart"
},
{
"type": "origins:block_state",
"property": "age",
"comparison": "==",
"compare_to": 1
}
]
},
"if_action":
{
"type": "origins:and",
"actions":
[
{
"type": "origins:execute_command",
"command": "setblock ~ ~ ~ minecraft:nether_wart[age=3]",
"permission_level": 4
},
{
"type": "origins:execute_command",
"command": "particle minecraft:composter ~ ~ ~ .3 .3 .3 0 10 normal",
"permission_level": 4
},
{
"type": "origins:execute_command",
"command": "playsound minecraft:item.bone_meal.use player @a[distance=..32] ~ ~ ~ .5 1",
"permission_level": 4
}
]
},
"else_action":
{
"type": "origins:if_else",
"condition":
{
"type": "origins:and",
"conditions":
[
{
"type": "origins:block",
"block": "nether_wart"
},
{
"type": "origins:block_state",
"property": "age",
"comparison": "==",
"compare_to": 0
}
]
},
"if_action":
{
"type": "origins:and",
"actions":
[
{
"type": "origins:execute_command",
"command": "setblock ~ ~ ~ minecraft:nether_wart[age=1]",
"permission_level": 4
},
{
"type": "origins:execute_command",
"command": "particle minecraft:composter ~ ~ ~ .3 .3 .3 0 10 normal",
"permission_level": 4
},
{
"type": "origins:execute_command",
"command": "playsound minecraft:item.bone_meal.use player @a[distance=..32] ~ ~ ~ .5 1",
"permission_level": 4
}
]
}
}
}
},
"block_condition":
{
"type": "origins:block",
"block": "nether_wart"
},
"condition":
{
"type": "origins:sneaking"
}
},
"sugarcane":
{
"type": "origins:action_on_block_use",
"block_action":
{
"type": "origins:and",
"actions":
[
{
"type": "origins:execute_command",
"command": "particle minecraft:composter ~ ~ ~ .3 .3 .3 0 10 normal",
"permission_level": 4
},
{
"type": "origins:execute_command",
"command": "playsound minecraft:item.bone_meal.use player @a[distance=..32] ~ ~ ~ .5 1",
"permission_level": 4
},
{
"type": "origins:offset",
"action":
{
"type": "origins:set_block",
"block": "sugar_cane"
},
"y": 1
}
]
},
"block_condition":
{
"type": "origins:and",
"conditions":
[
{
"type": "origins:block",
"block": "sugar_cane"
},
{
"type": "origins:offset",
"condition":
{
"type": "origins:block",
"block": "air"
},
"y": 1
},
{
"type": "origins:offset",
"condition":
{
"inverted": true,
"type": "origins:block",
"block": "sugar_cane"
},
"y": -2
}
]
},
"condition":
{
"type": "origins:sneaking"
}
},
"cactus":
{
"type": "origins:action_on_block_use",
"block_action":
{
"type": "origins:and",
"actions":
[
{
"type": "origins:execute_command",
"command": "particle minecraft:composter ~ ~ ~ .3 .3 .3 0 10 normal",
"permission_level": 4
},
{
"type": "origins:execute_command",
"command": "playsound minecraft:item.bone_meal.use player @a[distance=..32] ~ ~ ~ .5 1",
"permission_level": 4
},
{
"type": "origins:offset",
"action":
{
"type": "origins:set_block",
"block": "cactus"
},
"y": 1
}
]
},
"block_condition":
{
"type": "origins:and",
"conditions":
[
{
"type": "origins:block",
"block": "cactus"
},
{
"type": "origins:offset",
"condition":
{
"type": "origins:block",
"block": "air"
},
"y": 1
},
{
"type": "origins:offset",
"condition":
{
"inverted": true,
"type": "origins:block",
"block": "cactus"
},
"y": -2
}
]
},
"condition":
{
"type": "origins:sneaking"
}
},
"pumpkin":
{
"type": "origins:action_on_block_use",
"block_action":
{
"type": "origins:and",
"actions":
[
{
"type": "origins:execute_command",
"command": "particle minecraft:composter ~ ~ ~ .3 .3 .3 0 10 normal",
"permission_level": 4
},
{
"type": "origins:execute_command",
"command": "playsound minecraft:item.bone_meal.use player @a[distance=..32] ~ ~ ~ .5 1",
"permission_level": 4
},
{
"type": "origins:choice",
"actions":
[
{
"weight": 1,
"element":
{
"type": "origins:offset",
"action":
{
"type": "origins:if_else",
"condition":
{
"type": "origins:and",
"conditions":
[
{
"type": "origins:block",
"block": "air"
},
{
"type": "origins:offset",
"condition":
{
"type": "origins:in_tag",
"tag": "minecraft:dirt"
},
"y": -1
}
]
},
"if_action":
{
"type": "origins:set_block",
"block": "pumpkin"
}
},
"x": 1
}
},
{
"weight": 1,
"element":
{
"type": "origins:offset",
"action":
{
"type": "origins:if_else",
"condition":
{
"type": "origins:and",
"conditions":
[
{
"type": "origins:block",
"block": "air"
},
{
"type": "origins:offset",
"condition":
{
"type": "origins:in_tag",
"tag": "minecraft:dirt"
},
"y": -1
}
]
},
"if_action":
{
"type": "origins:set_block",
"block": "pumpkin"
}
},
"x": -1
}
},
{
"weight": 1,
"element":
{
"type": "origins:offset",
"action":
{
"type": "origins:if_else",
"condition":
{
"type": "origins:and",
"conditions":
[
{
"type": "origins:block",
"block": "air"
},
{
"type": "origins:offset",
"condition":
{
"type": "origins:in_tag",
"tag": "minecraft:dirt"
},
"y": -1
}
]
},
"if_action":
{
"type": "origins:set_block",
"block": "pumpkin"
}
},
"z": 1
}
},
{
"weight": 1,
"element":
{
"type": "origins:offset",
"action":
{
"type": "origins:if_else",
"condition":
{
"type": "origins:and",
"conditions":
[
{
"type": "origins:block",
"block": "air"
},
{
"type": "origins:offset",
"condition":
{
"type": "origins:in_tag",
"tag": "minecraft:dirt"
},
"y": -1
}
]
},
"if_action":
{
"type": "origins:set_block",
"block": "pumpkin"
}
},
"z": -1
}
}
]
}
]
},
"block_condition":
{
"type": "origins:and",
"conditions":
[
{
"type": "origins:block",
"block": "pumpkin_stem"
},
{
"type": "origins:block_state",
"property": "age",
"comparison": "==",
"compare_to": 7
},
{
"type": "origins:adjacent",
"adjacent_condition":
{
"type": "origins:block",
"block": "pumpkin"
},
"comparison": "==",
"compare_to": 0
}
]
}
},
"melon":
{
"type": "origins:action_on_block_use",
"block_action":
{
"type": "origins:and",
"actions":
[
{
"type": "origins:execute_command",
"command": "particle minecraft:composter ~ ~ ~ .3 .3 .3 0 10 normal",
"permission_level": 4
},
{
"type": "origins:execute_command",
"command": "playsound minecraft:item.bone_meal.use player @a[distance=..32] ~ ~ ~ .5 1",
"permission_level": 4
},
{
"type": "origins:choice",
"actions":
[
{
"weight": 1,
"element":
{
"type": "origins:offset",
"action":
{
"type": "origins:if_else",
"condition":
{
"type": "origins:and",
"conditions":
[
{
"type": "origins:block",
"block": "air"
},
{
"type": "origins:offset",
"condition":
{
"type": "origins:in_tag",
"tag": "minecraft:dirt"
},
"y": -1
}
]
},
"if_action":
{
"type": "origins:set_block",
"block": "melon"
}
},
"x": 1
}
},
{
"weight": 1,
"element":
{
"type": "origins:offset",
"action":
{
"type": "origins:if_else",
"condition":
{
"type": "origins:and",
"conditions":
[
{
"type": "origins:block",
"block": "air"
},
{
"type": "origins:offset",
"condition":
{
"type": "origins:in_tag",
"tag": "minecraft:dirt"
},
"y": -1
}
]
},
"if_action":
{
"type": "origins:set_block",
"block": "melon"
}
},
"x": -1
}
},
{
"weight": 1,
"element":
{
"type": "origins:offset",
"action":
{
"type": "origins:if_else",
"condition":
{
"type": "origins:and",
"conditions":
[
{
"type": "origins:block",
"block": "air"
},
{
"type": "origins:offset",
"condition":
{
"type": "origins:in_tag",
"tag": "minecraft:dirt"
},
"y": -1
}
]
},
"if_action":
{
"type": "origins:set_block",
"block": "melon"
}
},
"z": 1
}
},
{
"weight": 1,
"element":
{
"type": "origins:offset",
"action":
{
"type": "origins:if_else",
"condition":
{
"type": "origins:and",
"conditions":
[
{
"type": "origins:block",
"block": "air"
},
{
"type": "origins:offset",
"condition":
{
"type": "origins:in_tag",
"tag": "minecraft:dirt"
},
"y": -1
}
]
},
"if_action":
{
"type": "origins:set_block",
"block": "melon"
}
},
"z": -1
}
}
]
}
]
},
"block_condition":
{
"type": "origins:and",
"conditions":
[
{
"type": "origins:block",
"block": "melon_stem"
},
{
"type": "origins:block_state",
"property": "age",
"comparison": "==",
"compare_to": 7
},
{
"type": "origins:adjacent",
"adjacent_condition":
{
"type": "origins:block",
"block": "melon"
},
"comparison": "==",
"compare_to": 0
}
]
}
}
}

View File

@@ -0,0 +1,14 @@
{
"type": "origins:action_when_damage_taken",
"entity_action": {
"type": "origins:damage",
"amount": 2
},
"damage_condition": {
"type": "origins:name",
"name":"wither"
},
"cooldown": 1,
"name":"Darkness Damage",
"description":"You take more damage from wither damage."
}

View File

@@ -0,0 +1,14 @@
{
"type": "origins:conditioned_attribute",
"modifier": {
"attribute": "minecraft:generic.attack_damage",
"operation": "addition",
"value": -2
},
"tick_rate": 20,
"condition": {
"type": "origins:daytime"
},
"name":"Day Aversion",
"description":"You are weakened at daytime."
}

View File

@@ -0,0 +1,19 @@
{
"type": "origins:conditioned_attribute",
"modifier": {
"attribute": "minecraft:generic.attack_damage",
"operation": "addition",
"value": 4
},
"tick_rate": 20,
"condition": {
"type": "origins:on_block",
"block_condition": {
"type": "origins:height",
"comparison": "<=",
"compare_to": 30
}
},
"name":"Deepdweller",
"description":"Formed of rock and stone, you are strengthened when you are deep underground. You do significantly more damage when below Y 30."
}

View File

@@ -0,0 +1,22 @@
{
"type": "origins:active_self",
"entity_action": {
"type": "origins:spawn_effect_cloud",
"radius": 10.0,
"wait_time": 40,
"effect": {
"effect": "minecraft:poison",
"amplifier": 2,
"duration": 20
}
},
"cooldown": 500,
"hud_render": {
"should_render": true,
"sprite_location":"origins:textures/gui/resource_bar.png",
"bar_index":8,
"inverted":true
},
"name":"Poison Cloud",
"description":"As your primary ability, you can spawn a poison cloud around you."
}

View File

@@ -0,0 +1,17 @@
{
"type": "origins:active_self",
"entity_action": {
"type": "origins:execute_command",
"command": "function aspects:summon_golems"
},
"cooldown": 2400,
"hud_render": {
"should_render": true,
"inverted":true
},
"key": {
"key": "key.origins.secondary_active"
},
"name":"Friendly Assistance",
"description":"As your secondary ability, you can spawn in two Iron Golems to help you fight off enemies."
}

View File

@@ -0,0 +1,6 @@
{
"type": "origins:particle",
"particle": "minecraft:falling_spore_blossom",
"frequency": 80,
"hidden":true
}

View File

@@ -0,0 +1,18 @@
{
"type": "origins:action_when_damage_taken",
"entity_action": {
"type": "origins:damage",
"amount": 4,
"source": {
"name": "explosion",
"bypasses_armor": false
}
},
"damage_condition": {
"type": "origins:name",
"name": "inWall"
},
"cooldown": 1,
"name":"Crystalline",
"description":"You take more damage from explosions."
}

View File

@@ -0,0 +1,24 @@
{
"type": "origins:action_over_time",
"entity_action": {
"type":"origins:and",
"actions": [
{
"type": "origins:heal",
"amount": 0.3
}
]
},
"interval": 20,
"condition": {
"type": "origins:block_in_radius",
"block_condition": {
"type": "origins:block",
"block": "minecraft:flower"
},
"radius": 5,
"shape": "cube",
"comparison": ">=",
"compare_to": 1
}
}

View File

@@ -0,0 +1,18 @@
{
"type": "origins:conditioned_attribute",
"modifier": {
"attribute": "minecraft:generic.movement_speed",
"operation": "addition",
"value": 0.05
},
"tick_rate": 20,
"condition": {
"type": "origins:on_block",
"block_condition": {
"type": "origins:block",
"block": "minecraft:grass_block"
}
},
"name":"Grassfeet",
"description":"When on grass blocks, your movement speed is increased."
}

View File

@@ -0,0 +1,10 @@
{
"type": "origins:attribute",
"modifier": {
"attribute": "minecraft:generic.movement_speed",
"value": -0.0002,
"operation": "addition"
},
"name":"Heavy As Stone",
"description":"Though you may be sturdy and resistant, you are a little bit slower than other aspects."
}

View File

@@ -0,0 +1,18 @@
{
"type": "origins:action_on_hit",
"bientity_action": {
"type": "origins:damage",
"amount": 3,
"source": {
"name": "generic",
"bypasses_armor": true
}
},
"condition": {
"type": "origins:entity_group",
"group": "undead"
},
"name":"Holy Affinity",
"description":"You do more damage against the undead."
}

View File

@@ -0,0 +1,14 @@
{
"type": "origins:conditioned_attribute",
"modifier": {
"attribute": "minecraft:generic.attack_damage",
"operation": "addition",
"value": 2
},
"tick_rate": 20,
"condition": {
"type": "origins:daytime"
},
"name":"Holy Light",
"description":"You do more damage during the daytime."
}

View File

@@ -0,0 +1,14 @@
{
"type": "origins:self_glow",
"bientity_condition": {
"type": "origins:can_see"
},
"condition": {
"type": "origins:exposed_to_sun"
},
"use_teams": false,
"red": 0.0,
"green": 0.0,
"blue": 0.0,
"hidden":true
}

View File

@@ -0,0 +1,15 @@
{
"type": "origins:conditioned_attribute",
"modifier": {
"attribute": "minecraft:generic.attack_damage",
"operation": "addition",
"value": -2
},
"tick_rate": 20,
"condition": {
"type": "origins:daytime",
"inverted":true
},
"name":"Night Aversion",
"description":"You are weakened at nighttime."
}

View File

@@ -0,0 +1,15 @@
{
"type": "origins:conditioned_attribute",
"modifier": {
"attribute": "minecraft:generic.attack_damage",
"operation": "addition",
"value": 2
},
"tick_rate": 20,
"condition": {
"type": "origins:daytime",
"inverted": true
},
"name":"Night Strength",
"description":"You do more damage during the nighttime."
}

View File

@@ -0,0 +1,14 @@
{
"type": "origins:action_when_damage_taken",
"entity_action": {
"type": "origins:clear_effect",
"effect": "minecraft:poison"
},
"damage_condition": {
"type": "origins:name",
"name":"magic"
},
"cooldown": 1,
"name":"Poison Ivy",
"description":"You cannot receive the poison status effect."
}

View File

@@ -0,0 +1,21 @@
{
"type": "origins:action_over_time",
"entity_action": {
"type": "origins:chance",
"action": {
"type": "origins:apply_effect",
"effect": {
"effect": "minecraft:hero_of_the_village",
"duration": 12000,
"amplifier": 0
},
"chance": 0.05
}
},
"interval": 24000,
"condition": {
"type": "origins:daytime"
},
"name":"Positive Influence",
"description":"As every morning passes, you have a small chance to gain the Hero of the Village effect."
}

View File

@@ -0,0 +1,10 @@
{
"type": "origins:attribute",
"modifier": {
"attribute": "minecraft:generic.armor",
"value": 4,
"operation": "addition"
},
"name":"Resistance",
"description":"You have more natural armour points than other aspect users."
}

View File

@@ -0,0 +1,6 @@
{
"type": "origins:entity_group",
"group": "undead",
"name":"Undead",
"description":"You are undead. You don't burn in the sun, but you have the other side effects of being deceased, such as reversed health and damage potions."
}

View File

@@ -0,0 +1,31 @@
{
"type": "origins:action_when_damage_taken",
"entity_action": {
"type": "origins:and",
"actions":[
{
"type": "origins:execute_command",
"command": "execute as @s in minecraft:overworld run teleport 0 190 0"
},
{
"type": "origins:apply_effect",
"effect": {
"effect": "minecraft:slow_falling",
"duration": 400,
"amplifier": 2
}
}
]
},
"damage_condition": {
"type": "origins:name",
"name":"outOfWorld"
},
"cooldown": 1,
"name":"Void Teleport",
"description":"When you fall into the void, you will be teleported high up into the air in the center of the overworld regardless of the dimension you are currently in."
}

View File

@@ -0,0 +1,16 @@
{
"type": "origins:multiple",
"transparent": {
"type": "origins:model_color",
"red": 0.2,
"green": 0.2,
"blue":0.2,
"alpha": 0.7
},
"particle": {
"type": "origins:particle",
"particle": "minecraft:mycelium",
"frequency": 20
},
"hidden":true
}

View File

@@ -1,5 +1,5 @@
#Indigo properties file
#Sun Dec 12 18:06:31 AST 2021
#Mon Dec 13 11:00:23 AST 2021
debug-compare-lighting=auto
fix-exterior-vertex-lighting=auto
ambient-occlusion-mode=hybrid

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.

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,5 @@
[18:06:23] [main/INFO] (FabricLoader/GameProvider) Loading Minecraft 1.18 with Fabric Loader 0.12.10
[18:06:23] [main/INFO] (FabricLoader) Loading 61 mods:
[11:00:14] [main/INFO] (FabricLoader/GameProvider) Loading Minecraft 1.18 with Fabric Loader 0.12.10
[11:00:15] [main/INFO] (FabricLoader) Loading 61 mods:
- apoli 2.2.0
- aspects ${version}
- calio 1.4.2
@@ -61,13 +61,13 @@
- origins 1.3.0
- playerabilitylib 1.3.0
- reach-entity-attributes 2.1.1
[18:06:23] [main/WARN] (FabricLoader/Metadata) Mod `aspects` (${version}) does not respect SemVer - comparison support is limited.
[18:06:23] [main/INFO] (FabricLoader/Mixin) SpongePowered MIXIN Subsystem Version=0.8.4 Source=file:/Users/adellanicholson/.gradle/caches/modules-2/files-2.1/net.fabricmc/sponge-mixin/0.10.7+mixin.0.8.4/7a4ca9d54d9ae564dea0363d668036a8420ed9b8/sponge-mixin-0.10.7+mixin.0.8.4.jar Service=Knot/Fabric Env=CLIENT
[18:06:23] [main/INFO] (FabricLoader/Mixin) Loaded Fabric development mappings for mixin remapper!
[18:06:23] [main/INFO] (FabricLoader/Mixin) Compatibility level set to JAVA_16
[18:06:28] [main/WARN] (FabricLoader/Mixin) @Inject(@At("INVOKE")) Shift.BY=3 on fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin::handler$zem000$onLoadBlockEntity exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning.
[18:06:30] [Render thread/INFO] (Minecraft) Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[18:06:30] [Render thread/ERROR] (Minecraft) Failed to verify authentication
[11:00:15] [main/WARN] (FabricLoader/Metadata) Mod `aspects` (${version}) does not respect SemVer - comparison support is limited.
[11:00:15] [main/INFO] (FabricLoader/Mixin) SpongePowered MIXIN Subsystem Version=0.8.4 Source=file:/Users/adellanicholson/.gradle/caches/modules-2/files-2.1/net.fabricmc/sponge-mixin/0.10.7+mixin.0.8.4/7a4ca9d54d9ae564dea0363d668036a8420ed9b8/sponge-mixin-0.10.7+mixin.0.8.4.jar Service=Knot/Fabric Env=CLIENT
[11:00:15] [main/INFO] (FabricLoader/Mixin) Loaded Fabric development mappings for mixin remapper!
[11:00:15] [main/INFO] (FabricLoader/Mixin) Compatibility level set to JAVA_16
[11:00:20] [main/WARN] (FabricLoader/Mixin) @Inject(@At("INVOKE")) Shift.BY=3 on fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin::handler$zjg000$onLoadBlockEntity exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning.
[11:00:21] [Render thread/INFO] (Minecraft) Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[11:00:23] [Render thread/ERROR] (Minecraft) Failed to verify authentication
com.mojang.authlib.exceptions.InvalidCredentialsException: Status: 401
at com.mojang.authlib.exceptions.MinecraftClientHttpException.toAuthenticationException(MinecraftClientHttpException.java:56) ~[authlib-3.2.38.jar:?]
at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:132) ~[authlib-3.2.38.jar:?]
@@ -89,96 +89,144 @@ Caused by: com.mojang.authlib.exceptions.MinecraftClientHttpException: Status: 4
at com.mojang.authlib.minecraft.client.MinecraftClient.get(MinecraftClient.java:48) ~[authlib-3.2.38.jar:?]
at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:113) ~[authlib-3.2.38.jar:?]
... 13 more
[18:06:30] [Render thread/INFO] (Minecraft) Setting user: Player679
[18:06:30] [Render thread/INFO] (Origins) Origins 1.3.0 is initializing. Have fun!
[18:06:31] [Render thread/INFO] (aspects) Hello from Aspects :D
[18:06:31] [Render thread/INFO] (Apoli) Apoli 2.2.0 has initialized. Ready to power up your game!
[18:06:31] [Render thread/INFO] (Indigo) [Indigo] Registering Indigo renderer!
[18:06:31] [Render thread/INFO] (Minecraft) Backend library: LWJGL version 3.2.1 build 12
[18:06:33] [Render thread/INFO] (Minecraft) Reloading ResourceManager: Default, Fabric Mods (Fabric Renderer API (v1), Fabric Tag Extensions (v0), Fabric Screen API (v1), Fabric Item API (v1), Fabric Content Registries (v0), Fabric BlockRenderLayer Registration (v1), Fabric Events Lifecycle (v0), Origins, Reach Entity Attributes, Fabric Rendering (v1), Fabric Data Generation API (v1), Aspects, Fabric Lifecycle Events (v1), Fabric Structure API (v1), Fabric Object Builder API (v1), Fabric Networking (v0), Fabric Screen Handler API (v1), Fabric Dimensions API (v1), Fabric Command API (v1), Fabric Models (v0), Fabric Biome API (v1), Fabric Transfer API (v1), Fabric API Lookup API (v1), Apoli, Fabric Item Groups (v0), Fabric Loot Tables (v1), Cloth Config v6, Fabric Tool Attribute API (v1), Fabric API Base, Fabric Textures (v0), Fabric Crash Report Info (v1), Fabric Entity Events (v1), Fabric Events Interaction (v0), Fabric Particles (v1), Fabric Key Binding API (v1), Mod Menu, Fabric Commands (v0), Fabric Rendering Fluids (v1), Fabric Registry Sync (v0), Fabric Game Test API (v1), Pal, Fabric Containers (v0), Fabric API, Fabric Networking API (v1), Fabric Rendering (v0), Fabric Key Bindings (v0), Fabric Mining Levels (v0), Fabric Renderer Registries (v1), Fabric Object Builders (v0), Calio, Fabric Rendering Data Attachment (v1), Fabric Resource Loader (v0), Fabric Mining Level API (v1), Fabric Renderer - Indigo, Fabric Game Rule API (v1), Fabric Loader)
[18:06:33] [Render thread/INFO] (aspects) Hello from Aspects! :D
[18:06:33] [Realms Notification Availability checker #1/INFO] (Minecraft) Could not authorize you against Realms server: Invalid session id
[18:06:36] [Render thread/INFO] (Minecraft) OpenAL initialized on device CoreAudio Default
[18:06:36] [Render thread/INFO] (Minecraft) Sound engine started
[18:06:37] [Render thread/INFO] (Minecraft) Created: 1024x1024x4 minecraft:textures/atlas/blocks.png-atlas
[18:06:37] [Render thread/INFO] (Minecraft) Created: 256x128x4 minecraft:textures/atlas/signs.png-atlas
[18:06:37] [Render thread/INFO] (Minecraft) Created: 1024x512x4 minecraft:textures/atlas/banner_patterns.png-atlas
[18:06:37] [Render thread/INFO] (Minecraft) Created: 1024x512x4 minecraft:textures/atlas/shield_patterns.png-atlas
[18:06:37] [Render thread/INFO] (Minecraft) Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas
[18:06:37] [Render thread/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas
[18:06:37] [Render thread/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas
[18:06:38] [Render thread/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas
[18:06:38] [Render thread/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas
[18:06:38] [Render thread/INFO] (Minecraft) Created: 256x128x0 minecraft:textures/atlas/mob_effects.png-atlas
[18:06:38] [Render thread/INFO] (aspects) Hello from Aspects! :D
[18:19:49] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[18:19:49] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0]
[18:19:49] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498]
[18:19:49] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498]
[18:19:49] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[18:19:49] [Render thread/INFO] (Minecraft) Reloading ResourceManager: Default, Fabric Mods (Origins, Aspects, Apoli, Fabric Tool Attribute API (v1), Fabric Game Test API (v1))
[18:19:49] [Render thread/INFO] (Minecraft) Loaded 7 recipes
[18:19:49] [Render thread/INFO] (Minecraft) Loaded 1143 advancements
[18:19:49] [Render thread/INFO] (Apoli) Finished loading powers from data files. Registry contains 113 powers.
[18:19:49] [Render thread/INFO] (Origins) Finished loading origins from data files. Registry contains 17 origins.
[18:19:49] [Render thread/INFO] (Origins) Trying to read layer file: aspects:elements
[18:19:49] [Render thread/INFO] (Origins) Trying to read layer file: origins:origin
[18:19:49] [Render thread/INFO] (Origins) Trying to read layer file: aspects:origins
[18:19:49] [Render thread/INFO] (Origins) Finished loading origin layers from data files. Read 3 layers.
[18:19:49] [Render thread/INFO] (BiomeModificationImpl) Applied 0 biome modifications to 0 of 61 new biomes in 1.498 ms
[18:19:50] [Render thread/INFO] (Minecraft) Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[18:19:50] [Server thread/INFO] (Minecraft) Starting integrated minecraft server version 1.18
[18:19:50] [Server thread/INFO] (Minecraft) Generating keypair
[18:19:50] [Server thread/INFO] (Minecraft) Preparing start region for dimension minecraft:overworld
[18:19:51] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[18:19:51] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[18:19:51] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[18:19:54] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[18:19:54] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[18:19:54] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[18:19:54] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[18:19:54] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[18:19:54] [Render thread/INFO] (Minecraft) Preparing spawn area: 32%
[18:19:55] [Render thread/INFO] (Minecraft) Preparing spawn area: 53%
[18:19:55] [Render thread/INFO] (Minecraft) Preparing spawn area: 73%
[18:19:56] [Render thread/INFO] (Minecraft) Time elapsed: 5369 ms
[18:19:56] [Server thread/INFO] (Minecraft) Changing view distance to 12, from 10
[18:19:56] [Server thread/INFO] (Minecraft) Changing simulation distance to 12, from 0
[18:19:56] [Server thread/INFO] (Minecraft) Player679[local:E:8da1f0a0] logged in with entity id 64 at (-114.51266071143392, 60.82412442536817, 255.2570813465739)
[18:19:56] [Server thread/INFO] (Minecraft) Player679 joined the game
[18:19:57] [Render thread/INFO] (Minecraft) Loaded 15 advancements
[18:20:32] [Server thread/INFO] (Minecraft) Saving and pausing game...
[18:20:32] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
[18:20:32] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
[18:20:32] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
[18:20:34] [Server thread/INFO] (Minecraft) Saving and pausing game...
[18:20:34] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
[18:20:34] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
[18:20:34] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
[18:20:49] [Server thread/INFO] (Minecraft) Saving and pausing game...
[18:20:49] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
[18:20:49] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
[18:20:49] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
[18:21:12] [Server thread/INFO] (Minecraft) Player679 was struck by lightning
[18:21:12] [Render thread/INFO] (Minecraft) [CHAT] Player679 was struck by lightning
[18:21:58] [Server thread/INFO] (Minecraft) [Player679: Set origin of Player679 in layer Aspect to Hydro.]
[18:21:58] [Render thread/INFO] (Minecraft) [CHAT] Set origin of Player679 in layer Aspect to Hydro.
[18:22:17] [Server thread/INFO] (Minecraft) [Player679: Set origin of Player679 in layer Type to Cryo.]
[18:22:17] [Render thread/INFO] (Minecraft) [CHAT] Set origin of Player679 in layer Type to Cryo.
[18:22:20] [Server thread/INFO] (Minecraft) Player679 has made the advancement [Monster Hunter]
[18:22:20] [Render thread/INFO] (Minecraft) [CHAT] Player679 has made the advancement [Monster Hunter]
[18:22:20] [Render thread/INFO] (Minecraft) Loaded 39 advancements
[18:22:26] [Render thread/INFO] (Minecraft) Stopping!
[18:22:26] [Server thread/INFO] (Minecraft) Player679 lost connection: Disconnected
[18:22:26] [Server thread/INFO] (Minecraft) Player679 left the game
[18:22:26] [Server thread/INFO] (Minecraft) Stopping singleplayer server as player logged out
[18:22:26] [Server thread/INFO] (Minecraft) Stopping server
[18:22:26] [Server thread/INFO] (Minecraft) Saving players
[18:22:26] [Server thread/INFO] (Minecraft) Saving worlds
[18:22:26] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
[18:22:26] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
[18:22:26] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
[18:22:26] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (New World): All chunks are saved
[18:22:26] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[18:22:26] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[18:22:26] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage: All dimensions are saved
[11:00:23] [Render thread/INFO] (Minecraft) Setting user: Player986
[11:00:23] [Render thread/INFO] (Apoli) Apoli 2.2.0 has initialized. Ready to power up your game!
[11:00:23] [Render thread/INFO] (aspects) Hello from Aspects :D
[11:00:23] [Render thread/INFO] (Origins) Origins 1.3.0 is initializing. Have fun!
[11:00:23] [Render thread/INFO] (Indigo) [Indigo] Registering Indigo renderer!
[11:00:24] [Render thread/INFO] (Minecraft) Backend library: LWJGL version 3.2.1 build 12
[11:00:25] [Render thread/INFO] (Minecraft) Reloading ResourceManager: Default, Fabric Mods (Mod Menu, Apoli, Fabric Rendering (v0), Fabric Biome API (v1), Fabric Renderer API (v1), Pal, Fabric Game Test API (v1), Fabric API Base, Cloth Config v6, Fabric Transfer API (v1), Fabric Content Registries (v0), Fabric Item Groups (v0), Fabric Rendering Fluids (v1), Fabric API, Fabric Key Binding API (v1), Aspects, Fabric Entity Events (v1), Fabric BlockRenderLayer Registration (v1), Fabric Crash Report Info (v1), Fabric Data Generation API (v1), Calio, Fabric Renderer Registries (v1), Fabric Screen Handler API (v1), Fabric Game Rule API (v1), Fabric Rendering (v1), Fabric Structure API (v1), Fabric Dimensions API (v1), Fabric Registry Sync (v0), Fabric Mining Level API (v1), Fabric Commands (v0), Reach Entity Attributes, Fabric Networking API (v1), Fabric Mining Levels (v0), Fabric Networking (v0), Fabric Lifecycle Events (v1), Fabric Resource Loader (v0), Fabric Screen API (v1), Fabric Key Bindings (v0), Fabric Textures (v0), Fabric Containers (v0), Fabric Tag Extensions (v0), Fabric Renderer - Indigo, Fabric Loader, Fabric API Lookup API (v1), Origins, Fabric Item API (v1), Fabric Command API (v1), Fabric Rendering Data Attachment (v1), Fabric Models (v0), Fabric Object Builders (v0), Fabric Events Interaction (v0), Fabric Loot Tables (v1), Fabric Particles (v1), Fabric Events Lifecycle (v0), Fabric Object Builder API (v1), Fabric Tool Attribute API (v1))
[11:00:25] [Render thread/INFO] (aspects) Hello from Aspects! :D
[11:00:27] [Realms Notification Availability checker #1/INFO] (Minecraft) Could not authorize you against Realms server: Invalid session id
[11:00:28] [Render thread/INFO] (Minecraft) OpenAL initialized on device CoreAudio Default
[11:00:28] [Render thread/INFO] (Minecraft) Sound engine started
[11:00:28] [Render thread/INFO] (Minecraft) Created: 1024x1024x4 minecraft:textures/atlas/blocks.png-atlas
[11:00:29] [Render thread/INFO] (Minecraft) Created: 256x128x4 minecraft:textures/atlas/signs.png-atlas
[11:00:29] [Render thread/INFO] (Minecraft) Created: 1024x512x4 minecraft:textures/atlas/banner_patterns.png-atlas
[11:00:29] [Render thread/INFO] (Minecraft) Created: 1024x512x4 minecraft:textures/atlas/shield_patterns.png-atlas
[11:00:29] [Render thread/INFO] (Minecraft) Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas
[11:00:29] [Render thread/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas
[11:00:29] [Render thread/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas
[11:00:30] [Render thread/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas
[11:00:30] [Render thread/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas
[11:00:30] [Render thread/INFO] (Minecraft) Created: 256x128x0 minecraft:textures/atlas/mob_effects.png-atlas
[11:00:30] [Render thread/INFO] (aspects) Hello from Aspects! :D
[11:00:32] [Render thread/INFO] (aspects) Hello from Aspects! :D
[11:00:36] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[11:00:36] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0]
[11:00:36] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498]
[11:00:36] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498]
[11:00:36] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[11:00:36] [Render thread/INFO] (Minecraft) Reloading ResourceManager: Default, Fabric Mods (Apoli, Fabric Game Test API (v1), Aspects, Origins, Fabric Tool Attribute API (v1))
[11:00:36] [Worker-Main-16/ERROR] (MultiJsonDataLoader) Couldn't parse data file aspects:groundtied from aspects:powers/groundtied.json
com.google.gson.JsonParseException: java.io.EOFException: End of input at line 1 column 1 path $
at net.minecraft.util.JsonHelper.deserialize(JsonHelper.java:505) ~[minecraft-project-@-mapped.jar:?]
at net.minecraft.util.JsonHelper.deserialize(JsonHelper.java:542) ~[minecraft-project-@-mapped.jar:?]
at io.github.apace100.calio.data.MultiJsonDataLoader.lambda$prepare$1(MultiJsonDataLoader.java:62) ~[calio-v1.4.2.jar:?]
at java.util.ArrayList.forEach(ArrayList.java:1511) ~[?:?]
at io.github.apace100.calio.data.MultiJsonDataLoader.prepare(MultiJsonDataLoader.java:48) ~[calio-v1.4.2.jar:?]
at io.github.apace100.calio.data.MultiJsonDataLoader.prepare(MultiJsonDataLoader.java:24) ~[calio-v1.4.2.jar:?]
at net.minecraft.resource.SinglePreparationResourceReloader.method_18791(SinglePreparationResourceReloader.java:11) ~[minecraft-project-@-mapped.jar:?]
at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) [?:?]
at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) [?:?]
at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) [?:?]
at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) [?:?]
at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) [?:?]
at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) [?:?]
at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) [?:?]
Caused by: java.io.EOFException: End of input at line 1 column 1 path $
at com.google.gson.stream.JsonReader.nextNonWhitespace(JsonReader.java:1395) ~[gson-2.8.8.jar:?]
at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:548) ~[gson-2.8.8.jar:?]
at com.google.gson.stream.JsonReader.peek(JsonReader.java:424) ~[gson-2.8.8.jar:?]
at com.google.gson.internal.bind.TypeAdapters$29.read(TypeAdapters.java:703) ~[gson-2.8.8.jar:?]
at com.google.gson.internal.bind.TypeAdapters$29.read(TypeAdapters.java:701) ~[gson-2.8.8.jar:?]
at com.google.gson.internal.bind.TypeAdapters$35$1.read(TypeAdapters.java:908) ~[gson-2.8.8.jar:?]
at net.minecraft.util.JsonHelper.deserialize(JsonHelper.java:503) ~[minecraft-project-@-mapped.jar:?]
... 13 more
[11:00:36] [Render thread/INFO] (Minecraft) Loaded 7 recipes
[11:00:36] [Render thread/INFO] (Minecraft) Loaded 1143 advancements
[11:00:36] [Render thread/ERROR] (Apoli) There was a problem reading power file aspects:darkness_damage (skipping): Error reading data field at entity_action.source: JSON requires field: source
[11:00:36] [Render thread/ERROR] (Apoli) There was a problem reading power file aspects:positive_influence (skipping): Error reading data field at entity_action.chance: JSON requires field: chance
[11:00:36] [Render thread/ERROR] (Apoli) There was a problem reading power file aspects:flower_regen (skipping): Error reading data field at condition.block_condition.block: Identifier "minecraft:flower" was not registered in registry "minecraft:block".
[11:00:36] [Render thread/INFO] (Apoli) Finished loading powers from data files. Registry contains 139 powers.
[11:00:36] [Render thread/ERROR] (Origins) Origin "aspects:dendro" contained unregistered power: "aspects:flower_regen"
[11:00:36] [Render thread/ERROR] (Origins) Origin "aspects:dendro" contained unregistered power: "aspects:suspicious_substance"
[11:00:36] [Render thread/ERROR] (Origins) Origin "aspects:ordo" contained unregistered power: "aspects:holy_light"
[11:00:36] [Render thread/ERROR] (Origins) Origin "aspects:ordo" contained unregistered power: "aspects:positive_influence"
[11:00:36] [Render thread/ERROR] (Origins) Origin "aspects:ordo" contained unregistered power: "aspects:darkness_damage"
[11:00:36] [Render thread/INFO] (Origins) Finished loading origins from data files. Registry contains 21 origins.
[11:00:36] [Render thread/INFO] (Origins) Trying to read layer file: aspects:elements
[11:00:36] [Render thread/INFO] (Origins) Trying to read layer file: origins:origin
[11:00:36] [Render thread/INFO] (Origins) Trying to read layer file: aspects:origins
[11:00:36] [Render thread/INFO] (Origins) Finished loading origin layers from data files. Read 3 layers.
[11:00:37] [Render thread/INFO] (BiomeModificationImpl) Applied 0 biome modifications to 0 of 61 new biomes in 2.281 ms
[11:00:39] [Render thread/INFO] (Minecraft) Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[11:00:39] [Server thread/INFO] (Minecraft) Starting integrated minecraft server version 1.18
[11:00:39] [Server thread/INFO] (Minecraft) Generating keypair
[11:00:40] [Server thread/INFO] (Minecraft) Preparing start region for dimension minecraft:overworld
[11:00:43] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:43] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:43] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:43] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:43] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:43] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:43] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:43] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:44] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:44] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:45] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:51] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:51] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:51] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:51] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:51] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:51] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:51] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:51] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:51] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:51] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:51] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[11:00:51] [Render thread/INFO] (Minecraft) Preparing spawn area: 3%
[11:00:51] [Render thread/INFO] (Minecraft) Preparing spawn area: 16%
[11:00:52] [Render thread/INFO] (Minecraft) Preparing spawn area: 34%
[11:00:52] [Render thread/INFO] (Minecraft) Preparing spawn area: 55%
[11:00:53] [Render thread/INFO] (Minecraft) Preparing spawn area: 69%
[11:00:53] [Render thread/INFO] (Minecraft) Preparing spawn area: 86%
[11:00:53] [Render thread/INFO] (Minecraft) Time elapsed: 13690 ms
[11:00:54] [Server thread/INFO] (Minecraft) Changing view distance to 12, from 10
[11:00:54] [Server thread/INFO] (Minecraft) Changing simulation distance to 12, from 0
[11:00:59] [Server thread/INFO] (Minecraft) Player986[local:E:840bfa1c] logged in with entity id 168 at (18.943051278628204, 70.0, -31.69999998807907)
[11:00:59] [Server thread/INFO] (Minecraft) Player986 joined the game
[11:00:59] [Server thread/INFO] (Minecraft) Skipping update from removed player 'ServerPlayerEntity['Player986'/168, l='ServerLevel[New World]', x=18.94, y=70.00, z=-31.70, removed=KILLED]'
[11:00:59] [Render thread/INFO] (Minecraft) Loaded 0 advancements
[11:01:00] [Server thread/INFO] (Minecraft) Skipping update from removed player 'ServerPlayerEntity['Player986'/168, l='ServerLevel[New World]', x=18.94, y=70.00, z=-31.70, removed=KILLED]'
[11:01:00] [Server thread/INFO] (Minecraft) Skipping update from removed player 'ServerPlayerEntity['Player986'/168, l='ServerLevel[New World]', x=18.94, y=70.00, z=-31.70, removed=KILLED]'
[11:01:06] [Server thread/INFO] (Minecraft) [Player986: Set own game mode to Creative Mode]
[11:01:06] [Render thread/INFO] (Minecraft) [CHAT] Set own game mode to Creative Mode
[11:01:17] [Server thread/INFO] (Minecraft) [Player986: Set own game mode to Survival Mode]
[11:01:17] [Render thread/INFO] (Minecraft) [CHAT] Set own game mode to Survival Mode
[11:01:19] [Server thread/INFO] (Minecraft) Saving and pausing game...
[11:01:19] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
[11:01:19] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
[11:01:19] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
[11:01:25] [Server thread/INFO] (Origins) Player Player986 chose Origin: aspects:geo, for layer: aspects:elements
[11:01:30] [Server thread/INFO] (Origins) Player Player986 chose Origin: aspects:dendro, for layer: aspects:origins
[11:01:31] [Server thread/INFO] (Origins) Player Player986 chose Origin: origins:human, for layer: origins:origin
[11:01:42] [Server thread/WARN] (Minecraft) Unable to add mob to team "Dendro" (that team probably doesn't exist)
[11:02:03] [Server thread/INFO] (Minecraft) Player986 was blown up by Creeper
[11:02:03] [Render thread/INFO] (Minecraft) [CHAT] Player986 was blown up by Creeper
[11:02:03] [Render thread/INFO] (Minecraft) Loaded 21 advancements
[11:02:20] [Render thread/INFO] (Minecraft) Stopping!
[11:02:21] [Server thread/INFO] (Minecraft) Player986 lost connection: Disconnected
[11:02:21] [Server thread/INFO] (Minecraft) Player986 left the game
[11:02:21] [Server thread/INFO] (Minecraft) Stopping singleplayer server as player logged out
[11:02:21] [Server thread/INFO] (Minecraft) Stopping server
[11:02:21] [Server thread/INFO] (Minecraft) Saving players
[11:02:21] [Server thread/INFO] (Minecraft) Saving worlds
[11:02:21] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
[11:02:21] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
[11:02:21] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
[11:02:21] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (New World): All chunks are saved
[11:02:21] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[11:02:21] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[11:02:21] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage: All dimensions are saved

View File

@@ -20,14 +20,14 @@ toggleSprint:false
darkMojangStudiosBackground:false
hideLightningFlashes:false
mouseSensitivity:0.5
fov:0.0
fov:0.025
screenEffectScale:1.0
fovEffectScale:1.0
gamma:0.5
renderDistance:12
simulationDistance:12
entityDistanceScaling:1.0
guiScale:0
guiScale:4
particles:0
maxFps:120
difficulty:2
@@ -111,7 +111,7 @@ key_key.origins.primary_active:key.keyboard.g
key_key.origins.secondary_active:key.keyboard.h
key_key.origins.view_origin:key.keyboard.o
soundCategory_master:1.0
soundCategory_music:1.0
soundCategory_music:0.0
soundCategory_record:1.0
soundCategory_weather:1.0
soundCategory_block:1.0

View File

@@ -0,0 +1,9 @@
{
"minecraft:adventure/adventuring_time": {
"criteria": {
"minecraft:plains": "2021-12-12 20:55:34 -0400"
},
"done": false
},
"DataVersion": 2860
}

View File

@@ -0,0 +1,16 @@
{
"minecraft:adventure/root": {
"criteria": {
"killed_by_something": "2021-12-13 08:40:14 -0400"
},
"done": true
},
"minecraft:adventure/adventuring_time": {
"criteria": {
"minecraft:stony_shore": "2021-12-13 08:38:17 -0400",
"minecraft:plains": "2021-12-13 08:38:10 -0400"
},
"done": false
},
"DataVersion": 2860
}

View File

@@ -0,0 +1,9 @@
{
"minecraft:adventure/adventuring_time": {
"criteria": {
"minecraft:plains": "2021-12-12 19:51:44 -0400"
},
"done": false
},
"DataVersion": 2860
}

View File

@@ -0,0 +1,28 @@
{
"minecraft:adventure/root": {
"criteria": {
"killed_by_something": "2021-12-12 20:58:51 -0400"
},
"done": true
},
"minecraft:adventure/kill_a_mob": {
"criteria": {
"minecraft:zombie": "2021-12-12 20:59:46 -0400"
},
"done": true
},
"minecraft:adventure/kill_all_mobs": {
"criteria": {
"minecraft:zombie": "2021-12-12 20:59:46 -0400"
},
"done": false
},
"minecraft:adventure/adventuring_time": {
"criteria": {
"minecraft:stony_shore": "2021-12-12 20:58:55 -0400",
"minecraft:plains": "2021-12-12 20:57:39 -0400"
},
"done": false
},
"DataVersion": 2860
}

View File

@@ -0,0 +1,16 @@
{
"minecraft:adventure/root": {
"criteria": {
"killed_by_something": "2021-12-13 11:02:03 -0400"
},
"done": true
},
"minecraft:adventure/adventuring_time": {
"criteria": {
"minecraft:stony_shore": "2021-12-13 11:00:59 -0400",
"minecraft:plains": "2021-12-13 11:01:39 -0400"
},
"done": false
},
"DataVersion": 2860
}

View File

@@ -0,0 +1,10 @@
{
"minecraft:adventure/adventuring_time": {
"criteria": {
"minecraft:stony_shore": "2021-12-12 18:48:57 -0400",
"minecraft:plains": "2021-12-12 18:49:19 -0400"
},
"done": false
},
"DataVersion": 2860
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1 @@
{"stats":{"minecraft:custom":{"minecraft:jump":1,"minecraft:time_since_rest":412,"minecraft:leave_game":1,"minecraft:sprint_one_cm":474,"minecraft:play_time":412,"minecraft:time_since_death":412,"minecraft:walk_one_cm":1032,"minecraft:total_world_time":423,"minecraft:fly_one_cm":190}},"DataVersion":2860}

View File

@@ -0,0 +1 @@
{"stats":{"minecraft:custom":{"minecraft:jump":38,"minecraft:time_since_rest":13,"minecraft:leave_game":1,"minecraft:crouch_one_cm":163,"minecraft:deaths":1,"minecraft:sprint_one_cm":9040,"minecraft:play_time":1651,"minecraft:damage_taken":268,"minecraft:time_since_death":0,"minecraft:walk_one_cm":8631,"minecraft:sneak_time":25,"minecraft:total_world_time":2504,"minecraft:fall_one_cm":1045,"minecraft:fly_one_cm":10756},"minecraft:killed_by":{"minecraft:zombie":1}},"DataVersion":2860}

View File

@@ -0,0 +1 @@
{"stats":{"minecraft:custom":{"minecraft:jump":3,"minecraft:time_since_rest":387,"minecraft:leave_game":1,"minecraft:play_time":387,"minecraft:time_since_death":387,"minecraft:walk_one_cm":493,"minecraft:total_world_time":751,"minecraft:fall_one_cm":209}},"DataVersion":2860}

View File

@@ -0,0 +1 @@
{"stats":{"minecraft:custom":{"minecraft:jump":45,"minecraft:time_since_rest":52,"minecraft:damage_dealt":87,"minecraft:leave_game":1,"minecraft:deaths":3,"minecraft:sprint_one_cm":3859,"minecraft:play_time":2408,"minecraft:damage_taken":650,"minecraft:time_since_death":0,"minecraft:walk_one_cm":13890,"minecraft:total_world_time":2846,"minecraft:mob_kills":4,"minecraft:fall_one_cm":209,"minecraft:fly_one_cm":6614},"minecraft:killed":{"minecraft:zombie":3},"minecraft:mined":{"minecraft:tall_grass":1,"minecraft:grass":1},"minecraft:used":{"minecraft:zombie_spawn_egg":7},"minecraft:killed_by":{"minecraft:zombie":3}},"DataVersion":2860}

View File

@@ -0,0 +1 @@
{"stats":{"minecraft:custom":{"minecraft:jump":8,"minecraft:time_since_rest":345,"minecraft:leave_game":1,"minecraft:deaths":1,"minecraft:sprint_one_cm":1910,"minecraft:play_time":1374,"minecraft:damage_taken":344,"minecraft:time_since_death":136,"minecraft:walk_one_cm":9459,"minecraft:total_world_time":1632,"minecraft:fall_one_cm":267,"minecraft:fly_one_cm":1514},"minecraft:killed_by":{"minecraft:creeper":1}},"DataVersion":2860}

View File

@@ -0,0 +1 @@
{"stats":{"minecraft:custom":{"minecraft:jump":25,"minecraft:time_since_rest":563,"minecraft:leave_game":1,"minecraft:sprint_one_cm":4709,"minecraft:play_time":563,"minecraft:time_since_death":563,"minecraft:walk_one_cm":954,"minecraft:total_world_time":1630,"minecraft:fall_one_cm":1939,"minecraft:fly_one_cm":6821}},"DataVersion":2860}

File diff suppressed because one or more lines are too long

View File

@@ -16,6 +16,9 @@ public class Aspects implements ModInitializer {
public static final Item ANEMO_FEATHER = new Item(new FabricItemSettings());
public static final Item PYRO_FIRE = new Item(new FabricItemSettings());
public static final Item HYDRO_KELP = new Item(new FabricItemSettings());
public static final Item GEO_DIAMOND = new Item(new FabricItemSettings());
public static final Item ORDO_STAR = new Item(new FabricItemSettings());
public static final Item PERDITIO_BONE = new Item(new FabricItemSettings());
public static final Logger LOGGER = LogManager.getLogger("aspects");
@Override
@@ -23,6 +26,9 @@ public class Aspects implements ModInitializer {
Registry.register(Registry.ITEM, new Identifier("aspects", "anemo_feather"), ANEMO_FEATHER);
Registry.register(Registry.ITEM, new Identifier("aspects", "pyro_fire"), PYRO_FIRE);
Registry.register(Registry.ITEM, new Identifier("aspects", "hydro_kelp"), HYDRO_KELP);
Registry.register(Registry.ITEM, new Identifier("aspects", "geo_diamond"), GEO_DIAMOND);
Registry.register(Registry.ITEM, new Identifier("aspects", "ordo_star"), ORDO_STAR);
Registry.register(Registry.ITEM, new Identifier("aspects", "perditio_bone"), PERDITIO_BONE);
LOGGER.info("Hello from Aspects :D");
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "aspects:item/geo_diamond"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "aspects:item/ordo_star"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "aspects:item/perditio_bone"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@@ -0,0 +1,4 @@
summon iron_golem ~ ~ ~ {OnGround:1b,Glowing:1b,Team:"Dendro",PlayerCreated:1b,ActiveEffects:[{Id:5b,Amplifier:1b,Duration:200,ShowParticles:0b}],Attributes:[{Name:generic.max_health,Base:80}]}
summon iron_golem ~ ~ ~ {OnGround:1b,Glowing:1b,Team:"Dendro",PlayerCreated:1b,ActiveEffects:[{Id:5b,Amplifier:1b,Duration:200,ShowParticles:0b}],Attributes:[{Name:generic.max_health,Base:80}]}
playsound entity.firework_rocket.twinkle neutral @s
particle spore_blossom_air ~ ~ ~ ~ ~ ~ 3 20

View File

@@ -36,11 +36,21 @@
"origins": [
"aspects:human",
"aspects:tempus",
"aspects:avis",
"aspects:sophos",
"icarus:icarae"
"aspects:avis"
]
}
},
{
"condition": {
"type":"origins:origin",
"origin":"aspects:geo",
"layer":"aspects:elements"
},
"origins": [
"aspects:human",
"aspects:dendro",
"idkarockthingmining"
]
}
],
"name": "Type",

Some files were not shown because too many files have changed in this diff Show More