cosmetic fixes

This commit is contained in:
missingbinary
2021-12-12 18:23:44 -04:00
parent 6da8038056
commit 2587a6a79e
121 changed files with 4763 additions and 2697 deletions

BIN
.DS_Store vendored

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
.gradle/file-system.probe Normal file

Binary file not shown.

26
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,26 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "gradle",
"id": "/Users/adellanicholson/Documents/AspectsbuildAspects",
"script": "build",
"description": "Assembles and tests this project.",
"group": {
"kind": "build",
"isDefault": true
},
"project": "Aspects",
"buildFile": "/Users/adellanicholson/Documents/Aspects/build.gradle",
"rootProject": "Aspects",
"projectFolder": "/Users/adellanicholson/Documents/Aspects",
"workspaceFolder": "/Users/adellanicholson/Documents/Aspects",
"args": "",
"javaDebug": false,
"problemMatcher": [
"$gradle"
],
"label": "gradle: build"
}
]
}

BIN
build/.DS_Store vendored Normal file

Binary file not shown.

View File

@@ -0,0 +1,14 @@
{
"mappings": {
"net/fabricmc/fishplex/mixin/AspectsMixin": {
"init()V": "Lnet/minecraft/class_442;method_25426()V"
}
},
"data": {
"named:intermediary": {
"net/fabricmc/fishplex/mixin/AspectsMixin": {
"init()V": "Lnet/minecraft/class_442;method_25426()V"
}
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1 @@
v1 named intermediary

View File

@@ -0,0 +1,14 @@
{
"required": true,
"minVersion": "0.8",
"package": "net.fabricmc.fishplex.mixin",
"compatibilityLevel": "JAVA_16",
"mixins": [
],
"client": [
"AspectsMixin"
],
"injectors": {
"defaultRequire": 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

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

View File

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

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 590 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 581 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 606 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1006 B

View File

@@ -0,0 +1,2 @@
playsound item.firecharge.use neutral @s
particle flame ~ ~ ~ 1 1 1 3 10

View File

@@ -0,0 +1,3 @@
particle minecraft:snowflake ~ ~ ~ 1 1 1 1 5 normal @a
fill ~1 ~-1 ~1 ~-1 ~-1 ~-1 minecraft:frosted_ice replace water[level=0]
playsound block.snow.place neutral @a ~ ~ ~ 5

View File

@@ -0,0 +1,3 @@
particle minecraft:snowflake
fill ~1 ~-1 ~1 ~-1 ~-1 ~-1 minecraft:frosted_ice replace water[level=0]
playsound block.powder_snow.place neutral @a

View File

@@ -0,0 +1,2 @@
particle snowflake ~ ~ ~ 3 3 3 5 10 normal
playsound block.glass.break neutral @a ~ ~ ~ 5

View File

@@ -0,0 +1,4 @@
particle minecraft:electric_spark ~ ~ ~ 0 0 0 0.0 5 normal @a
fill ~1 ~-1 ~1 ~-1 ~-1 ~-1 minecraft:fire replace air
playsound entity.lightning_bolt.thunder neutral @a ~ ~ ~ 5
summon lightning_bolt ~ ~ ~

View File

@@ -0,0 +1,2 @@
particle electric_spark ~ ~ ~ 3 3 3 5 10 normal
playsound entity.lightning_bolt.thunder neutral @a ~ ~ ~ 5

View File

@@ -0,0 +1,2 @@
particle flame ~ ~ ~ 2 2 2 1 10 normal
playsound entity.blaze.shoot neutral @a ~ ~ ~ 5

View File

@@ -0,0 +1,13 @@
{
"order": -1,
"origins": [
"aspects:anemo",
"aspects:hydro",
"aspects:geo",
"aspects:pyro",
"aspects:ordo",
"aspects:perditio"
],
"name": "Aspect",
"replace":true
}

View File

@@ -0,0 +1,48 @@
{
"order": 0,
"origins": [
{
"condition": {
"type": "origins:origin",
"origin": "aspects:pyro",
"layer": "aspects:elements"
},
"origins": [
"aspects:human",
"aspects:magmus",
"aspects:ignis",
"aspects:navitas"
]
},
{
"condition": {
"type": "origins:origin",
"origin": "aspects:hydro",
"layer": "aspects:elements"
},
"origins": [
"aspects:cryo",
"aspects:human",
"aspects:altum",
"aspects:aquatillis"
]
},
{
"condition": {
"type":"origins:origin",
"origin":"aspects:anemo",
"layer":"aspects:elements"
},
"origins": [
"aspects:human",
"aspects:tempus",
"aspects:avis",
"aspects:sophos",
"icarus:icarae"
]
}
],
"name": "Type",
"replace":true
}

View File

@@ -0,0 +1,14 @@
{
"powers": [
"aspects:fleet_footed",
"aspects:negate_fall_damage",
"aspects:chained",
"aspects:windborn",
"aspects:wise"
],
"icon": {
"item": "aspects:anemo_feather"
},
"name": "Anemo",
"description": "Anemo users are light on their feet, freeform in combat and wanderers by nature."
}

View File

@@ -0,0 +1,13 @@
{
"powers": [
"aspects:cold_biomes",
"aspects:frost_walker",
"aspects:cryo_primary",
"aspects:cryo_secondary"
],
"icon": {
"item": "minecraft:snowball"
},
"name": "Cryo",
"description": "Cold, calculating and precise, Cryo types always get the job done."
}

View File

@@ -0,0 +1,13 @@
{
"powers": [
"aspects:water_breathing",
"aspects:constitution",
"aspects:fire_damage",
"aspects:waterborn"
],
"icon": {
"item": "aspects:hydro_kelp"
},
"name": "Hydro",
"description": "Fluid and ever-changing, Hydro users are flexible and aware of the intent behind the actions of their enemies in order to better defy them."
}

View File

@@ -0,0 +1,13 @@
{
"powers": [
"aspects:hot_biomes",
"aspects:ignis_primary",
"aspects:ignis_secondary",
"aspects:fire_strength"
],
"icon": {
"item": "minecraft:fire_charge"
},
"name": "Ignis",
"description": "Full of energy and power, Ignis types are certainly the life of the party."
}

View File

@@ -0,0 +1,14 @@
{
"powers": [
"aspects:fire_immunity",
"aspects:nether_buff",
"aspects:water_damage",
"aspects:lava_vision",
"aspects:flameborn"
],
"icon": {
"item": "aspects:pyro_fire"
},
"name": "Pyro",
"description": "fire go weeee"
}

View File

@@ -0,0 +1,13 @@
{
"powers": [
"aspects:fleet",
"aspects:storm_strength",
"aspects:tempus_primary",
"aspects:tempus_secondary"
],
"icon": {
"item": "minecraft:amethyst_shard"
},
"name": "Tempus",
"description": "Dark minds crackling and churning, Tempus types always have a storm brewing in their heads."
}

View File

@@ -0,0 +1,23 @@
{
"type": "origins:conditioned_attribute",
"block_condition": {
"type": "origins:exposed_to_sky",
"inverted": "true"
},
"modifier":
{
"attribute": "minecraft:generic.attack_speed",
"operation": "addition",
"value": -1
},
"tick_rate": 20,
"name":"Chained",
"description":"When you aren't exposed to the sky, you become slower in combat.",
"badges": [
{
"sprite": "aspects:textures/gui/badge/cross.png",
"text": "Negative"
}
]
}

View File

@@ -0,0 +1,25 @@
{
"type": "origins:conditioned_attribute",
"modifier": {
"attribute": "minecraft:generic.attack_damage",
"operation": "addition",
"value": 0.4
},
"tick_rate": 20,
"condition": {
"type": "origins:biome",
"condition": {
"type": "origins:temperature",
"comparison": "<=",
"compare_to": 0.05
}
},
"name":"Cold Affinity",
"description":"You get a decent attack boost in cold biomes. (N)ice ;)",
"badges": [
{
"sprite": "aspects:textures/gui/badge/check.png",
"text": "Positive"
}
]
}

View File

@@ -0,0 +1,17 @@
{
"type": "origins:attribute",
"modifier": {
"attribute": "minecraft:generic.max_health",
"value": 4,
"operation": "addition"
},
"name":"Watery Persistence",
"description":"You have slightly increased max health.",
"badges": [
{
"sprite": "aspects:textures/gui/badge/check.png",
"text": "Positive"
}
]
}

View File

@@ -0,0 +1,38 @@
{
"type": "origins:active_self",
"entity_action": {
"type": "origins:raycast",
"distance": 8,
"block": true,
"entity": true,
"shape_type": "visual",
"fluid_handling": "any",
"bientity_action": {
"type": "origins:target_action",
"action":{
"type":"origins:damage",
"amount": 8,
"source": {
"name": "freeze",
"bypasses_armor": false
}
}
},
"command_at_hit": "function aspects:freeze_focus",
"command_along_ray": "function aspects:freeze_ray",
"command_step": 1,
"command_along_ray_only_on_hit": false
},
"cooldown": 240,
"hud_render": {
"should_render": true,
"sprite_location": "origins:textures/gui/resource_bar.png",
"bar_index":5,
"inverted":true
},
"name":"Freeze Focus",
"description":"When pressing the respective key, you will fire a ray of ice in the direction you are facing that will deal freeze damage to the target and freeze over ice on impact."
}

View File

@@ -0,0 +1,42 @@
{
"type": "origins:active_self",
"entity_action": {
"type":"origins:and",
"actions": [
{
"type": "origins:area_of_effect",
"radius": 8,
"bientity_action": {
"type": "origins:damage",
"amount": 6,
"source": {
"name": "freeze",
"bypasses_armor": true
}
},
"bientity_condition": {
"type": "origins:can_see"
}
},
{
"type":"origins:execute_command",
"command":"function aspects:icy_aura"
}
]
},
"cooldown": 800,
"hud_render": {
"should_render": true,
"sprite_location": "origins:textures/gui/community/spiderkolo/resource_bar_02.png",
"bar_index":8,
"inverted":true
},
"key": {
"key": "key.origins.secondary_active"
},
"name":"Icy Aura",
"description":"With your secondary key, you can deal freeze damage to those around you within an 8 block radius."
}

View File

@@ -0,0 +1,24 @@
{
"type": "origins:action_when_damage_taken",
"entity_action": {
"type": "origins:damage",
"amount": 2,
"source": {
"name": "onFire",
"fire": true,
"bypasses_armor": true
}
},
"damage_condition": {
"type": "origins:fire"
},
"cooldown": 20,
"name":"Evaporation",
"description":"Fire hurts you a lot more than it normally would.",
"badges": [
{
"sprite": "aspects:textures/gui/badge/cross.png",
"text": "Negative"
}
]
}

View File

@@ -0,0 +1,19 @@
{
"type": "origins:modify_damage_taken",
"damage_condition": {
"type": "origins:fire"
},
"modifier": {
"operation": "multiply_total",
"value": -1
},
"name":"Fire Immunity",
"description":"You are immune to fire damage.",
"badges": [
{
"sprite": "aspects:textures/gui/badge/check.png",
"text": "Positive"
}
]
}

View File

@@ -0,0 +1,21 @@
{
"type": "origins:conditioned_attribute",
"modifier": {
"attribute": "minecraft:generic.attack_damage",
"operation": "addition",
"value": 2
},
"tick_rate": 20,
"condition": {
"type": "origins:on_fire"
},
"name":"Heated Strength",
"description":"Being on fire grants you an attack damage bonus.",
"badges": [
{
"sprite": "aspects:textures/gui/badge/check.png",
"text": "Positive"
}
]
}

View File

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

View File

@@ -0,0 +1,17 @@
{
"type": "origins:attribute",
"modifier": {
"attribute": "minecraft:generic.movement_speed",
"value": 0.01,
"operation": "addition"
},
"name":"Like Lightning",
"description":"You are an even faster variant of Anemo.",
"badges": [
{
"sprite": "aspects:textures/gui/badge/check.png",
"text": "Positive"
}
]
}

View File

@@ -0,0 +1,16 @@
{
"type": "origins:attribute",
"modifier": {
"attribute": "minecraft:generic.movement_speed",
"value": 0.05,
"operation": "addition"
},
"name":"Fleet Footed",
"description":"You are quicker on your feet than others.",
"badges": [
{
"sprite": "aspects:textures/gui/badge/check.png",
"text": "Positive"
}
]
}

View File

@@ -0,0 +1,41 @@
{
"type": "origins:action_over_time",
"interval": 5,
"entity_action": {
"type": "origins:if_else",
"condition": {
"type": "origins:or",
"inverted":true,
"conditions": [
{
"type": "origins:sneaking"
},
{
"type": "origins:fall_distance",
"comparison": ">=",
"compare_to": 4
},
{
"type": "origins:in_block",
"block_condition": {
"type": "origins:block",
"block": "minecraft:water"
}
}
]
},
"if_action": {
"type":"origins:execute_command",
"command": "fill ~1 ~-1 ~1 ~-1 ~-1 ~-1 minecraft:frosted_ice replace water[level=0]"
}
},
"name":"Frost Walker",
"description":"Water beneath you will turn into ice. Deactivates when you are falling, sneaking, or under the water.",
"badges": [
{
"sprite": "aspects:textures/gui/badge/equal.png",
"text": "Neutral"
}
]
}

View File

@@ -0,0 +1,25 @@
{
"type": "origins:conditioned_attribute",
"modifier": {
"attribute": "minecraft:generic.attack_damage",
"operation": "addition",
"value": 0.4
},
"tick_rate": 20,
"condition": {
"type": "origins:biome",
"condition": {
"type": "origins:temperature",
"comparison": ">=",
"compare_to": 1.0
}
},
"name":"Heat Affinity",
"description":"You get a decent attack boost in hot biomes.",
"badges": [
{
"sprite": "aspects:textures/gui/badge/check.png",
"text": "Positive"
}
]
}

View File

@@ -0,0 +1,25 @@
{
"type": "origins:active_self",
"entity_action": {
"type":"origins:and",
"actions": [
{
"type": "origins:set_on_fire",
"duration": 15
},
{
"type":"origins:execute_command",
"command":"function aspects:fire_light"
}
],
"cooldown": 300,
"hud_render": {
"should_render": true,
"bar_index": 7,
"inverted":true
}
},
"name":"Ignition",
"description":"Using your primary active ability, you can light yourself on fire for a short duration, granting you an attack buff."
}

View File

@@ -0,0 +1,31 @@
{
"type": "origins:active_self",
"entity_action": {
"type":"origins:and",
"actions": [
{
"type": "origins:area_of_effect",
"radius": 10,
"bientity_action": {
"type": "origins:target_action",
"action": {
"type": "origins:set_on_fire",
"duration": 5
}
},
"bientity_condition": {
"type": "origins:can_see"
}
},
{
"type":"origins:execute_command",
"command":"function aspects:ring_of_fire"
}
]
},
"key":"key.origins.secondary_active",
"cooldown": 1400,
"name":"Ring of Fire",
"description":"As your secondary ability, you can light entites around you on fire for a few seconds."
}

View File

@@ -0,0 +1,6 @@
{
"type": "origins:lava_vision",
"s": 0,
"v": 15,
"hidden":true
}

View File

@@ -0,0 +1,298 @@
{
"type": "origins:multiple",
"slowness_when_fall1": {
"type": "origins:self_action_when_hit",
"entity_action": {
"type": "origins:apply_effect",
"effect": {
"effect": "minecraft:slowness",
"amplifier": 0,
"duration": 100
}
},
"damage_condition": {
"type": "origins:and",
"conditions": [
{
"type": "origins:name",
"name": "fall"
},
{
"type": "origins:amount",
"comparison": ">=",
"compare_to": 3.0
}
]
},
"cooldown": 20
},
"slowness_when_flyintowall1": {
"type": "origins:self_action_when_hit",
"entity_action": {
"type": "origins:apply_effect",
"effect": {
"effect": "minecraft:slowness",
"amplifier": 0,
"duration": 100
}
},
"damage_condition": {
"type": "origins:and",
"conditions": [
{
"type": "origins:name",
"name": "flyIntoWall"
},
{
"type": "origins:amount",
"comparison": ">=",
"compare_to": 3.0
}
]
},
"cooldown": 20
},
"slowness_when_fall3": {
"type": "origins:self_action_when_hit",
"entity_action": {
"type": "origins:apply_effect",
"effect": {
"effect": "minecraft:slowness",
"amplifier": 1,
"duration": 100
}
},
"damage_condition": {
"type": "origins:and",
"conditions": [
{
"type": "origins:name",
"name": "fall"
},
{
"type": "origins:amount",
"comparison": ">=",
"compare_to": 6.0
}
]
},
"cooldown": 20
},
"slowness_when_flyintowall3": {
"type": "origins:self_action_when_hit",
"entity_action": {
"type": "origins:apply_effect",
"effect": {
"effect": "minecraft:slowness",
"amplifier": 1,
"duration": 100
}
},
"damage_condition": {
"type": "origins:and",
"conditions": [
{
"type": "origins:name",
"name": "flyIntoWall"
},
{
"type": "origins:amount",
"comparison": ">=",
"compare_to": 6.0
}
]
},
"cooldown": 20
},
"slowness_when_fall5": {
"type": "origins:self_action_when_hit",
"entity_action": {
"type": "origins:apply_effect",
"effect": {
"effect": "minecraft:slowness",
"amplifier": 2,
"duration": 120
}
},
"damage_condition": {
"type": "origins:and",
"conditions": [
{
"type": "origins:name",
"name": "fall"
},
{
"type": "origins:amount",
"comparison": ">=",
"compare_to": 10.0
}
]
},
"cooldown": 20
},
"slowness_when_flyintowall5": {
"type": "origins:self_action_when_hit",
"entity_action": {
"type": "origins:apply_effect",
"effect": {
"effect": "minecraft:slowness",
"amplifier": 2,
"duration": 120
}
},
"damage_condition": {
"type": "origins:and",
"conditions": [
{
"type": "origins:name",
"name": "flyIntoWall"
},
{
"type": "origins:amount",
"comparison": ">=",
"compare_to": 10.0
}
]
},
"cooldown": 20
},
"slowness_when_fall7": {
"type": "origins:self_action_when_hit",
"entity_action": {
"type": "origins:apply_effect",
"effect": {
"effect": "minecraft:slowness",
"amplifier": 3,
"duration": 140
}
},
"damage_condition": {
"type": "origins:and",
"conditions": [
{
"type": "origins:name",
"name": "fall"
},
{
"type": "origins:amount",
"comparison": ">=",
"compare_to": 14.0
}
]
},
"cooldown": 20
},
"slowness_when_flyintowall7": {
"type": "origins:self_action_when_hit",
"entity_action": {
"type": "origins:apply_effect",
"effect": {
"effect": "minecraft:slowness",
"amplifier": 3,
"duration": 140
}
},
"damage_condition": {
"type": "origins:and",
"conditions": [
{
"type": "origins:name",
"name": "flyIntoWall"
},
{
"type": "origins:amount",
"comparison": ">=",
"compare_to": 14.0
}
]
},
"cooldown": 20
},
"slowness_when_fall9": {
"type": "origins:self_action_when_hit",
"entity_action": {
"type": "origins:apply_effect",
"effect": {
"effect": "minecraft:slowness",
"amplifier": 4,
"duration": 140
}
},
"damage_condition": {
"type": "origins:and",
"conditions": [
{
"type": "origins:name",
"name": "fall"
},
{
"type": "origins:amount",
"comparison": ">=",
"compare_to": 18.0
}
]
},
"cooldown": 20
},
"slowness_when_flyintowall9": {
"type": "origins:self_action_when_hit",
"entity_action": {
"type": "origins:apply_effect",
"effect": {
"effect": "minecraft:slowness",
"amplifier": 4,
"duration": 140
}
},
"damage_condition": {
"type": "origins:and",
"conditions": [
{
"type": "origins:name",
"name": "flyIntoWall"
},
{
"type": "origins:amount",
"comparison": ">=",
"compare_to": 18.0
}
]
},
"cooldown": 20
},
"reduced_kinetic_damage": {
"type": "origins:modify_damage_taken",
"modifier": {
"name": "More kinetic damage taken",
"value": -0.85,
"operation": "multiply_base"
},
"damage_condition": {
"type": "origins:or",
"conditions": [
{
"type": "origins:name",
"name": "fall"
},
{
"type": "origins:name",
"name": "flyIntoWall"
}
]
}
},
"name":"Negate Falling",
"description":"You cannot take fall damage, but the more fall damage that is absorbed by the atmosphere, the more your movement speed will temporarily decrease.",
"badges": [
{
"sprite": "aspects:textures/gui/badge/equal.png",
"text": "Neutral"
}
]
}

View File

@@ -0,0 +1,23 @@
{
"type": "origins:conditioned_attribute",
"modifier": {
"attribute": "minecraft:generic.attack_damage",
"operation": "addition",
"value": 0.4
},
"condition": {
"type": "origins:biome",
"condition": {
"type": "origins:category",
"category": "nether"
}
},
"name":"Homely Strength",
"description":"You do more damage whilst in the Nether.",
"badges": [
{
"sprite": "aspects:textures/gui/badge/check.png",
"text": "Positive"
}
]
}

View File

@@ -0,0 +1,21 @@
{
"type": "origins:conditioned_attribute",
"modifier": {
"attribute": "minecraft:generic.attack_damage",
"operation": "addition",
"value": 0.4
},
"tick_rate": 10,
"condition": {
"type": "origins:predicate",
"predicate": "aspects:weather/is_thunderstorm"
},
"name":"Storm Strength",
"description":"During thunderstorms, you do significantly more damage to others.",
"badges": [
{
"sprite": "aspects:textures/gui/badge/check.png",
"text": "Positive"
}
]
}

View File

@@ -0,0 +1,35 @@
{
"type": "origins:active_self",
"entity_action": {
"type": "origins:raycast",
"distance": 8,
"block": true,
"entity": true,
"shape_type": "visual",
"fluid_handling": "any",
"bientity_action": {
"type": "origins:target_action",
"action":{
"type":"origins:damage",
"amount": 2,
"source": {
"name": "lightningBolt",
"bypasses_armor": false
}
}
},
"command_at_hit": "function aspects:lightning_bolt",
"command_step": 1
},
"cooldown": 240,
"hud_render": {
"should_render": true,
"sprite_location": "origins:textures/gui/resource_bar.png",
"bar_index":2,
"inverted":true
},
"name":"Lightning Bolt",
"description":"When pressing the respective key, you will summon a lightning bolt at the block or entity you are looking at, doing damage and setting nearby blocks on fire as well."
}

View File

@@ -0,0 +1,58 @@
{
"type": "origins:active_self",
"entity_action": {
"type": "origins:and",
"actions": [
{
"type": "origins:area_of_effect",
"radius": 10,
"bientity_action": {
"type": "origins:target_action",
"action": {
"type": "origins:add_velocity",
"z": 5
}
},
"bientity_condition": {
"type": "origins:can_see"
}
},
{
"type": "origins:area_of_effect",
"radius": 10,
"bientity_action": {
"type": "origins:damage",
"amount": 5,
"source": {
"name": "lightningBolt",
"bypasses_armor": true
}
},
"bientity_condition": {
"type": "origins:can_see"
}
},
{
"type": "origins:heal",
"amount": 6
},
{
"type":"origins:execute_command",
"command":"function aspects:raging_gales"
}
]
},
"hud_render": {
"should_render": true,
"inverted":true,
"sprite_location": "origins:textures/gui/resource_bar.png",
"bar_index":3
},
"key":"key.origins.secondary_active",
"cooldown": 400,
"name":"Raging Gales",
"description":"As your secondary ability, you can push enemies away by a few blocks whilst healing yourself and dealing damage to others."
}

View File

@@ -0,0 +1,21 @@
{
"type": "origins:action_over_time",
"entity_action": {
"type": "origins:gain_air",
"value": 200
},
"interval": 20,
"condition": {
"type": "origins:submerged_in",
"fluid": "minecraft:water"
},
"name":"Gills",
"description":"You can breathe underwater.",
"badges": [
{
"sprite": "aspects:textures/gui/badge/check.png",
"text": "Positive"
}
]
}

View File

@@ -0,0 +1,36 @@
{
"type": "origins:damage_over_time",
"interval": 20,
"onset_delay": 1,
"damage": 2,
"damage_easy": 1,
"damage_source": {
"name": "hurt_by_water",
"unblockable": true,
"bypasses_armor": true
},
"protection_enchantment": "origins:water_protection",
"protection_effectiveness": 1.0,
"condition": {
"type": "origins:or",
"conditions": [
{
"type": "origins:fluid_height",
"fluid": "minecraft:water",
"comparison": ">",
"compare_to": 0.0
},
{
"type": "origins:in_rain"
}
]
},
"name":"Water Damage",
"description":"When you touch water, you receive damage.",
"badges": [
{
"sprite": "aspects:textures/gui/badge/cross.png",
"text": "Negative"
}
]
}

View File

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

View File

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

View File

@@ -0,0 +1,15 @@
{
"type": "origins:modify_xp_gain",
"modifier": {
"operation": "multiply_base",
"value": 2.0
},
"name":"Wise",
"description":"Anemo is also the aspect of wisdom and knowledge. You gain 3x more experience upon picking up an experience orb. Way to go, smarty pants.",
"badges": [
{
"sprite": "aspects:textures/gui/badge/check.png",
"text": "Positive"
}
]
}

View File

@@ -0,0 +1,5 @@
{
"condition": "minecraft:weather_check",
"raining": true,
"thundering": true
}

View File

@@ -0,0 +1,38 @@
{
"schemaVersion": 1,
"id": "aspects",
"version": "1.0.0",
"name": "Aspects",
"description": "This is an example description! Tell everyone what your mod is about!",
"authors": [
"Fishplex"
],
"contact": {
"homepage": "https://fabricmc.net/",
"sources": "https://github.com/FabricMC/fabric-example-mod"
},
"license": "CC0-1.0",
"icon": "assets/modid/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"net.fabricmc.fishplex.Aspects"
]
},
"mixins": [
"aspects.mixins.json"
],
"depends": {
"fabricloader": ">=0.11.3",
"fabric": "*",
"minecraft": "1.18.x",
"java": ">=17"
},
"suggests": {
"another-mod": "*"
}
}

Binary file not shown.

View File

@@ -0,0 +1,2 @@
Manifest-Version: 1.0

View File

@@ -0,0 +1,2 @@
Manifest-Version: 1.0

View File

@@ -0,0 +1,2 @@
Manifest-Version: 1.0

View File

@@ -1,5 +1,5 @@
#Indigo properties file
#Sun Dec 12 17:25:29 AST 2021
#Sun Dec 12 18:06:31 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.

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,5 @@
[17:25:21] [main/INFO] (FabricLoader/GameProvider) Loading Minecraft 1.18 with Fabric Loader 0.12.10
[17:25:21] [main/INFO] (FabricLoader) Loading 61 mods:
[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:
- 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
[17:25:21] [main/WARN] (FabricLoader/Metadata) Mod `aspects` (${version}) does not respect SemVer - comparison support is limited.
[17:25:21] [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
[17:25:21] [main/INFO] (FabricLoader/Mixin) Loaded Fabric development mappings for mixin remapper!
[17:25:21] [main/INFO] (FabricLoader/Mixin) Compatibility level set to JAVA_16
[17:25:26] [main/WARN] (FabricLoader/Mixin) @Inject(@At("INVOKE")) Shift.BY=3 on fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin::handler$zlm000$onLoadBlockEntity exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning.
[17:25:28] [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'
[17:25:28] [Render thread/ERROR] (Minecraft) Failed to verify authentication
[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
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,86 +89,96 @@ 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
[17:25:28] [Render thread/INFO] (Minecraft) Setting user: Player297
[17:25:28] [Render thread/INFO] (Apoli) Apoli 2.2.0 has initialized. Ready to power up your game!
[17:25:29] [Render thread/INFO] (Origins) Origins 1.3.0 is initializing. Have fun!
[17:25:29] [Render thread/INFO] (aspects) Hello from Aspects :D
[17:25:29] [Render thread/INFO] (Indigo) [Indigo] Registering Indigo renderer!
[17:25:29] [Render thread/INFO] (Minecraft) Backend library: LWJGL version 3.2.1 build 12
[17:25:31] [Render thread/INFO] (Minecraft) Reloading ResourceManager: Default, Fabric Mods (Fabric Commands (v0), Fabric Object Builder API (v1), Fabric Data Generation API (v1), Fabric Key Bindings (v0), Fabric Rendering (v1), Fabric Particles (v1), Fabric Loader, Fabric Item Groups (v0), Fabric API Base, Apoli, Fabric Loot Tables (v1), Fabric Screen API (v1), Fabric Object Builders (v0), Fabric Networking API (v1), Fabric Screen Handler API (v1), Fabric Renderer - Indigo, Fabric Containers (v0), Fabric API Lookup API (v1), Fabric API, Fabric Command API (v1), Fabric Events Interaction (v0), Fabric Resource Loader (v0), Mod Menu, Fabric Tool Attribute API (v1), Fabric Mining Level API (v1), Fabric Game Test API (v1), Fabric Events Lifecycle (v0), Reach Entity Attributes, Fabric Crash Report Info (v1), Fabric Content Registries (v0), Fabric Tag Extensions (v0), Fabric Key Binding API (v1), Fabric Networking (v0), Fabric Renderer Registries (v1), Fabric Item API (v1), Pal, Cloth Config v6, Fabric Registry Sync (v0), Fabric Structure API (v1), Origins, Fabric Mining Levels (v0), Fabric Textures (v0), Fabric Biome API (v1), Fabric Models (v0), Aspects, Fabric Lifecycle Events (v1), Fabric Game Rule API (v1), Fabric Rendering Data Attachment (v1), Fabric Transfer API (v1), Fabric Entity Events (v1), Calio, Fabric Rendering Fluids (v1), Fabric Rendering (v0), Fabric Renderer API (v1), Fabric Dimensions API (v1), Fabric BlockRenderLayer Registration (v1))
[17:25:31] [Render thread/INFO] (aspects) Hello from Aspects! :D
[17:25:31] [Realms Notification Availability checker #1/INFO] (Minecraft) Could not authorize you against Realms server: Invalid session id
[17:25:34] [Render thread/INFO] (Minecraft) OpenAL initialized on device CoreAudio Default
[17:25:34] [Render thread/INFO] (Minecraft) Sound engine started
[17:25:34] [Render thread/INFO] (Minecraft) Created: 1024x1024x4 minecraft:textures/atlas/blocks.png-atlas
[17:25:34] [Render thread/INFO] (Minecraft) Created: 256x128x4 minecraft:textures/atlas/signs.png-atlas
[17:25:34] [Render thread/INFO] (Minecraft) Created: 1024x512x4 minecraft:textures/atlas/banner_patterns.png-atlas
[17:25:34] [Render thread/INFO] (Minecraft) Created: 1024x512x4 minecraft:textures/atlas/shield_patterns.png-atlas
[17:25:34] [Render thread/INFO] (Minecraft) Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas
[17:25:34] [Render thread/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas
[17:25:34] [Render thread/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas
[17:25:35] [Render thread/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas
[17:25:36] [Render thread/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas
[17:25:36] [Render thread/INFO] (Minecraft) Created: 256x128x0 minecraft:textures/atlas/mob_effects.png-atlas
[17:25:36] [Render thread/INFO] (aspects) Hello from Aspects! :D
[17:25:40] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[17:25:40] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0]
[17:25:40] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498]
[17:25:40] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498]
[17:25:40] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[17:25:40] [Render thread/INFO] (Minecraft) Reloading ResourceManager: Default, Fabric Mods (Apoli, Fabric Tool Attribute API (v1), Fabric Game Test API (v1), Origins, Aspects)
[17:25:41] [Render thread/INFO] (Minecraft) Loaded 7 recipes
[17:25:41] [Render thread/INFO] (Minecraft) Loaded 1143 advancements
[17:25:41] [Render thread/INFO] (Apoli) Finished loading powers from data files. Registry contains 113 powers.
[17:25:41] [Render thread/INFO] (Origins) Finished loading origins from data files. Registry contains 17 origins.
[17:25:41] [Render thread/INFO] (Origins) Trying to read layer file: aspects:elements
[17:25:41] [Render thread/INFO] (Origins) Trying to read layer file: origins:origin
[17:25:41] [Render thread/INFO] (Origins) Trying to read layer file: aspects:origins
[17:25:41] [Render thread/INFO] (Origins) Finished loading origin layers from data files. Read 3 layers.
[17:25:41] [Render thread/INFO] (BiomeModificationImpl) Applied 0 biome modifications to 0 of 61 new biomes in 2.408 ms
[17:25:43] [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'
[17:25:43] [Server thread/INFO] (Minecraft) Starting integrated minecraft server version 1.18
[17:25:43] [Server thread/INFO] (Minecraft) Generating keypair
[17:25:43] [Server thread/INFO] (Minecraft) Preparing start region for dimension minecraft:overworld
[17:25:45] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[17:25:45] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[17:25:45] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[17:25:45] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[17:25:45] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[17:25:46] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[17:25:46] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[17:25:47] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
[17:25:52] [Render thread/INFO] (Minecraft) Preparing spawn area: 2%
[17:25:52] [Render thread/INFO] (Minecraft) Preparing spawn area: 2%
[17:25:52] [Render thread/INFO] (Minecraft) Preparing spawn area: 2%
[17:25:52] [Render thread/INFO] (Minecraft) Preparing spawn area: 2%
[17:25:52] [Render thread/INFO] (Minecraft) Preparing spawn area: 2%
[17:25:52] [Render thread/INFO] (Minecraft) Preparing spawn area: 2%
[17:25:52] [Render thread/INFO] (Minecraft) Preparing spawn area: 2%
[17:25:52] [Render thread/INFO] (Minecraft) Preparing spawn area: 2%
[17:25:52] [Render thread/INFO] (Minecraft) Preparing spawn area: 2%
[17:25:52] [Render thread/INFO] (Minecraft) Preparing spawn area: 2%
[17:25:52] [Render thread/INFO] (Minecraft) Preparing spawn area: 4%
[17:25:53] [Render thread/INFO] (Minecraft) Preparing spawn area: 45%
[17:25:53] [Render thread/INFO] (Minecraft) Preparing spawn area: 55%
[17:25:54] [Render thread/INFO] (Minecraft) Preparing spawn area: 77%
[17:25:54] [Render thread/INFO] (Minecraft) Time elapsed: 10902 ms
[17:25:54] [Server thread/INFO] (Minecraft) Changing view distance to 12, from 10
[17:25:54] [Server thread/INFO] (Minecraft) Changing simulation distance to 12, from 0
[17:25:55] [Server thread/INFO] (Minecraft) Player297[local:E:98d2a8e8] logged in with entity id 147 at (-128.64816139641422, 71.0, 73.07484948963514)
[17:25:55] [Server thread/INFO] (Minecraft) Player297 joined the game
[17:25:55] [Render thread/INFO] (Minecraft) Loaded 12 advancements
[17:26:22] [Render thread/INFO] (Minecraft) Stopping!
[17:26:22] [Server thread/INFO] (Minecraft) Player297 lost connection: Disconnected
[17:26:22] [Server thread/INFO] (Minecraft) Player297 left the game
[17:26:22] [Server thread/INFO] (Minecraft) Stopping singleplayer server as player logged out
[17:26:22] [Server thread/INFO] (Minecraft) Stopping server
[17:26:22] [Server thread/INFO] (Minecraft) Saving players
[17:26:22] [Server thread/INFO] (Minecraft) Saving worlds
[17:26:22] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
[17:26:22] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
[17:26:22] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
[17:26:22] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (New World): All chunks are saved
[17:26:22] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[17:26:22] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[17:26:22] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage: All dimensions are saved
[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

View File

@@ -0,0 +1,126 @@
{
"minecraft:recipes/tools/fishing_rod": {
"criteria": {
"has_string": "2021-12-12 17:59:17 -0400"
},
"done": true
},
"minecraft:recipes/decorations/candle": {
"criteria": {
"has_string": "2021-12-12 17:59:17 -0400"
},
"done": true
},
"minecraft:recipes/combat/bow": {
"criteria": {
"has_string": "2021-12-12 17:59:17 -0400"
},
"done": true
},
"minecraft:recipes/building_blocks/white_wool_from_string": {
"criteria": {
"has_string": "2021-12-12 17:59:17 -0400"
},
"done": true
},
"minecraft:husbandry/root": {
"criteria": {
"consumed_item": "2021-12-12 17:59:42 -0400"
},
"done": true
},
"minecraft:recipes/transportation/dark_oak_boat": {
"criteria": {
"in_water": "2021-12-12 18:00:29 -0400"
},
"done": true
},
"minecraft:recipes/transportation/birch_boat": {
"criteria": {
"in_water": "2021-12-12 18:00:29 -0400"
},
"done": true
},
"minecraft:recipes/food/cooked_salmon": {
"criteria": {
"has_salmon": "2021-12-12 17:59:17 -0400"
},
"done": true
},
"minecraft:recipes/brewing/fermented_spider_eye": {
"criteria": {
"has_spider_eye": "2021-12-12 17:59:17 -0400"
},
"done": true
},
"minecraft:recipes/transportation/acacia_boat": {
"criteria": {
"in_water": "2021-12-12 18:00:29 -0400"
},
"done": true
},
"minecraft:recipes/combat/crossbow": {
"criteria": {
"has_string": "2021-12-12 17:59:17 -0400"
},
"done": true
},
"minecraft:recipes/transportation/oak_boat": {
"criteria": {
"in_water": "2021-12-12 18:00:29 -0400"
},
"done": true
},
"minecraft:recipes/food/cooked_salmon_from_smoking": {
"criteria": {
"has_salmon": "2021-12-12 17:59:17 -0400"
},
"done": true
},
"minecraft:husbandry/balanced_diet": {
"criteria": {
"salmon": "2021-12-12 17:59:42 -0400"
},
"done": false
},
"minecraft:recipes/decorations/loom": {
"criteria": {
"has_string": "2021-12-12 17:59:17 -0400"
},
"done": true
},
"minecraft:recipes/transportation/jungle_boat": {
"criteria": {
"in_water": "2021-12-12 18:00:29 -0400"
},
"done": true
},
"minecraft:recipes/redstone/tripwire_hook": {
"criteria": {
"has_string": "2021-12-12 17:59:17 -0400"
},
"done": true
},
"minecraft:recipes/food/cooked_salmon_from_campfire_cooking": {
"criteria": {
"has_salmon": "2021-12-12 17:59:17 -0400"
},
"done": true
},
"minecraft:recipes/transportation/spruce_boat": {
"criteria": {
"in_water": "2021-12-12 18:00:29 -0400"
},
"done": true
},
"minecraft:adventure/adventuring_time": {
"criteria": {
"minecraft:taiga": "2021-12-12 18:00:25 -0400",
"minecraft:stony_shore": "2021-12-12 18:00:04 -0400",
"minecraft:forest": "2021-12-12 18:00:03 -0400",
"minecraft:plains": "2021-12-12 17:59:17 -0400"
},
"done": false
},
"DataVersion": 2860
}

View File

@@ -0,0 +1,115 @@
{
"minecraft:recipes/tools/fishing_rod": {
"criteria": {
"has_string": "2021-12-12 18:19:56 -0400"
},
"done": true
},
"minecraft:recipes/decorations/candle": {
"criteria": {
"has_string": "2021-12-12 18:19:56 -0400"
},
"done": true
},
"minecraft:recipes/combat/bow": {
"criteria": {
"has_string": "2021-12-12 18:19:56 -0400"
},
"done": true
},
"minecraft:recipes/building_blocks/white_wool_from_string": {
"criteria": {
"has_string": "2021-12-12 18:19:56 -0400"
},
"done": true
},
"minecraft:recipes/transportation/dark_oak_boat": {
"criteria": {
"in_water": "2021-12-12 18:19:56 -0400"
},
"done": true
},
"minecraft:recipes/transportation/birch_boat": {
"criteria": {
"in_water": "2021-12-12 18:19:56 -0400"
},
"done": true
},
"minecraft:adventure/kill_a_mob": {
"criteria": {
"minecraft:zombified_piglin": "2021-12-12 18:22:20 -0400"
},
"done": true
},
"minecraft:adventure/kill_all_mobs": {
"criteria": {
"minecraft:zombified_piglin": "2021-12-12 18:22:20 -0400"
},
"done": false
},
"minecraft:recipes/brewing/fermented_spider_eye": {
"criteria": {
"has_spider_eye": "2021-12-12 18:19:56 -0400"
},
"done": true
},
"minecraft:recipes/transportation/acacia_boat": {
"criteria": {
"in_water": "2021-12-12 18:19:56 -0400"
},
"done": true
},
"minecraft:recipes/combat/crossbow": {
"criteria": {
"has_string": "2021-12-12 18:19:56 -0400"
},
"done": true
},
"minecraft:recipes/transportation/oak_boat": {
"criteria": {
"in_water": "2021-12-12 18:19:56 -0400"
},
"done": true
},
"minecraft:recipes/decorations/loom": {
"criteria": {
"has_string": "2021-12-12 18:19:56 -0400"
},
"done": true
},
"minecraft:adventure/root": {
"criteria": {
"killed_something": "2021-12-12 18:22:20 -0400"
},
"done": true
},
"minecraft:recipes/transportation/jungle_boat": {
"criteria": {
"in_water": "2021-12-12 18:19:56 -0400"
},
"done": true
},
"minecraft:recipes/redstone/tripwire_hook": {
"criteria": {
"has_string": "2021-12-12 18:19:56 -0400"
},
"done": true
},
"minecraft:recipes/transportation/spruce_boat": {
"criteria": {
"in_water": "2021-12-12 18:19:56 -0400"
},
"done": true
},
"minecraft:adventure/adventuring_time": {
"criteria": {
"minecraft:taiga": "2021-12-12 18:19:56 -0400",
"minecraft:river": "2021-12-12 18:20:23 -0400",
"minecraft:stony_shore": "2021-12-12 18:21:47 -0400",
"minecraft:forest": "2021-12-12 18:20:45 -0400",
"minecraft:plains": "2021-12-12 18:21:15 -0400"
},
"done": false
},
"DataVersion": 2860
}

Binary file not shown.

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