fixing pyro
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"order": -1,
|
"order": 1,
|
||||||
"origins": [
|
"origins": [
|
||||||
"aspects:anemo",
|
"aspects:anemo",
|
||||||
"aspects:hydro",
|
"aspects:hydro",
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"order": 1,
|
"order": 2,
|
||||||
"origins": [
|
"origins": [
|
||||||
{
|
{
|
||||||
"condition": {
|
"condition": {
|
||||||
|
|||||||
14
bin/main/data/aspects/origins/pyro.json
Normal file
14
bin/main/data/aspects/origins/pyro.json
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"powers": [
|
||||||
|
"aspects:fire_immunity",
|
||||||
|
"aspects:nether_buff",
|
||||||
|
"aspects:water_damage",
|
||||||
|
"aspects:lava_vision",
|
||||||
|
"aspects:flameborn"
|
||||||
|
],
|
||||||
|
"icon": {
|
||||||
|
"item": "minecraft:zombie_head"
|
||||||
|
},
|
||||||
|
"name": "Pyro",
|
||||||
|
"description": "fire go weeee"
|
||||||
|
}
|
||||||
@@ -11,7 +11,7 @@
|
|||||||
"type": "origins:target_action",
|
"type": "origins:target_action",
|
||||||
"action":{
|
"action":{
|
||||||
"type":"origins:damage",
|
"type":"origins:damage",
|
||||||
"amount": 6,
|
"amount": 8,
|
||||||
"source": {
|
"source": {
|
||||||
"name": "freeze",
|
"name": "freeze",
|
||||||
"bypasses_armor": false
|
"bypasses_armor": false
|
||||||
@@ -23,12 +23,13 @@
|
|||||||
"command_step": 1,
|
"command_step": 1,
|
||||||
"command_along_ray_only_on_hit": false
|
"command_along_ray_only_on_hit": false
|
||||||
},
|
},
|
||||||
"cooldown": 140,
|
"cooldown": 240,
|
||||||
"hud_render": {
|
"hud_render": {
|
||||||
"should_render": true
|
"should_render": true
|
||||||
},
|
},
|
||||||
|
|
||||||
"name":"Freeze Focus",
|
"name":"Freeze Focus",
|
||||||
"description":"This is your primary ability. 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 on impact."
|
"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 on impact."
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
5
bin/main/data/aspects/powers/fire_immunity.json
Normal file
5
bin/main/data/aspects/powers/fire_immunity.json
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"type": "origins:fire_immunity",
|
||||||
|
"name":"Fire Immunity",
|
||||||
|
"description":"You are immune to fire damage."
|
||||||
|
}
|
||||||
6
bin/main/data/aspects/powers/flameborn.json
Normal file
6
bin/main/data/aspects/powers/flameborn.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"type": "origins:particle",
|
||||||
|
"particle": "minecraft:flame",
|
||||||
|
"frequency": 80,
|
||||||
|
"hidden":true
|
||||||
|
}
|
||||||
6
bin/main/data/aspects/powers/lava_vision.json
Normal file
6
bin/main/data/aspects/powers/lava_vision.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"type": "origins:lava_vision",
|
||||||
|
"s": 0,
|
||||||
|
"v": 15,
|
||||||
|
"hidden":true
|
||||||
|
}
|
||||||
17
bin/main/data/aspects/powers/nether_buff.json
Normal file
17
bin/main/data/aspects/powers/nether_buff.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"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."
|
||||||
|
}
|
||||||
19
bin/main/data/aspects/powers/water_damage.json
Normal file
19
bin/main/data/aspects/powers/water_damage.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"type": "origins:action_over_time",
|
||||||
|
"interval": 20,
|
||||||
|
"entity_action": {
|
||||||
|
"type": "origins:damage",
|
||||||
|
"amount": 2,
|
||||||
|
"source":{
|
||||||
|
"name":"hurt_by_water"
|
||||||
|
},
|
||||||
|
"condition": {
|
||||||
|
"type": "origins:fluid_height",
|
||||||
|
"fluid": "minecraft:water",
|
||||||
|
"comparison": ">=",
|
||||||
|
"compare_to": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"name":"Water Damage",
|
||||||
|
"description":"When you touch water, you receive damage."
|
||||||
|
}
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
"license": "CC0-1.0",
|
"license": "CC0-1.0",
|
||||||
"icon": "assets/aspects/icon.png",
|
"icon": "assets/modid/icon.png",
|
||||||
|
|
||||||
"environment": "*",
|
"environment": "*",
|
||||||
"entrypoints": {
|
"entrypoints": {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#Indigo properties file
|
#Indigo properties file
|
||||||
#Sat Dec 11 16:50:02 AST 2021
|
#Sat Dec 11 17:01:02 AST 2021
|
||||||
debug-compare-lighting=auto
|
debug-compare-lighting=auto
|
||||||
fix-exterior-vertex-lighting=auto
|
fix-exterior-vertex-lighting=auto
|
||||||
ambient-occlusion-mode=hybrid
|
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.
5366
run/logs/debug.log
5366
run/logs/debug.log
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,5 @@
|
|||||||
[16:49:54] [main/INFO] (FabricLoader/GameProvider) Loading Minecraft 1.18 with Fabric Loader 0.12.10
|
[17:00:53] [main/INFO] (FabricLoader/GameProvider) Loading Minecraft 1.18 with Fabric Loader 0.12.10
|
||||||
[16:49:54] [main/INFO] (FabricLoader) Loading 61 mods:
|
[17:00:53] [main/INFO] (FabricLoader) Loading 61 mods:
|
||||||
- apoli 2.2.0
|
- apoli 2.2.0
|
||||||
- aspects ${version}
|
- aspects ${version}
|
||||||
- calio 1.4.2
|
- calio 1.4.2
|
||||||
@@ -61,13 +61,13 @@
|
|||||||
- origins 1.3.0
|
- origins 1.3.0
|
||||||
- playerabilitylib 1.3.0
|
- playerabilitylib 1.3.0
|
||||||
- reach-entity-attributes 2.1.1
|
- reach-entity-attributes 2.1.1
|
||||||
[16:49:54] [main/WARN] (FabricLoader/Metadata) Mod `aspects` (${version}) does not respect SemVer - comparison support is limited.
|
[17:00:53] [main/WARN] (FabricLoader/Metadata) Mod `aspects` (${version}) does not respect SemVer - comparison support is limited.
|
||||||
[16:49:54] [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:00:54] [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
|
||||||
[16:49:54] [main/INFO] (FabricLoader/Mixin) Loaded Fabric development mappings for mixin remapper!
|
[17:00:54] [main/INFO] (FabricLoader/Mixin) Loaded Fabric development mappings for mixin remapper!
|
||||||
[16:49:54] [main/INFO] (FabricLoader/Mixin) Compatibility level set to JAVA_16
|
[17:00:54] [main/INFO] (FabricLoader/Mixin) Compatibility level set to JAVA_16
|
||||||
[16:49:59] [main/WARN] (FabricLoader/Mixin) @Inject(@At("INVOKE")) Shift.BY=3 on fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin::handler$zmf000$onLoadBlockEntity exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning.
|
[17:00:58] [main/WARN] (FabricLoader/Mixin) @Inject(@At("INVOKE")) Shift.BY=3 on fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin::handler$zbf000$onLoadBlockEntity exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning.
|
||||||
[16:50:00] [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:01:00] [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'
|
||||||
[16:50:00] [Render thread/ERROR] (Minecraft) Failed to verify authentication
|
[17:01:01] [Render thread/ERROR] (Minecraft) Failed to verify authentication
|
||||||
com.mojang.authlib.exceptions.InvalidCredentialsException: Status: 401
|
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.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:?]
|
at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:132) ~[authlib-3.2.38.jar:?]
|
||||||
@@ -89,114 +89,94 @@ 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.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:?]
|
at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:113) ~[authlib-3.2.38.jar:?]
|
||||||
... 13 more
|
... 13 more
|
||||||
[16:50:00] [Render thread/INFO] (Minecraft) Setting user: Player765
|
[17:01:01] [Render thread/INFO] (Minecraft) Setting user: Player131
|
||||||
[16:50:00] [Render thread/INFO] (Origins) Origins 1.3.0 is initializing. Have fun!
|
[17:01:01] [Render thread/INFO] (Origins) Origins 1.3.0 is initializing. Have fun!
|
||||||
[16:50:01] [Render thread/INFO] (Apoli) Apoli 2.2.0 has initialized. Ready to power up your game!
|
[17:01:01] [Render thread/INFO] (Apoli) Apoli 2.2.0 has initialized. Ready to power up your game!
|
||||||
[16:50:01] [Render thread/INFO] (aspects) Hello Fabric world!
|
[17:01:01] [Render thread/INFO] (aspects) Hello Fabric world!
|
||||||
[16:50:02] [Render thread/INFO] (Indigo) [Indigo] Registering Indigo renderer!
|
[17:01:02] [Render thread/INFO] (Indigo) [Indigo] Registering Indigo renderer!
|
||||||
[16:50:02] [Render thread/INFO] (Minecraft) Backend library: LWJGL version 3.2.1 build 12
|
[17:01:02] [Render thread/INFO] (Minecraft) Backend library: LWJGL version 3.2.1 build 12
|
||||||
[16:50:04] [Render thread/INFO] (Minecraft) Reloading ResourceManager: Default, Fabric Mods (Fabric Renderer API (v1), Fabric Mining Levels (v0), Fabric Item Groups (v0), Fabric Key Bindings (v0), Fabric Game Test API (v1), Fabric Textures (v0), Fabric Tag Extensions (v0), Fabric Game Rule API (v1), Fabric Rendering Data Attachment (v1), Fabric Transfer API (v1), Fabric Loot Tables (v1), Origins, Calio, Fabric Command API (v1), Fabric Mining Level API (v1), Fabric Renderer - Indigo, Reach Entity Attributes, Fabric Dimensions API (v1), Fabric Networking (v0), Fabric Tool Attribute API (v1), Fabric Resource Loader (v0), Fabric Networking API (v1), Fabric API, Fabric Rendering (v0), Fabric Screen Handler API (v1), Fabric Renderer Registries (v1), Fabric Object Builders (v0), Fabric Particles (v1), Fabric Rendering (v1), Fabric Containers (v0), Fabric Screen API (v1), Fabric BlockRenderLayer Registration (v1), Apoli, Fabric Structure API (v1), Fabric Commands (v0), Fabric Registry Sync (v0), Fabric API Base, Fabric Entity Events (v1), Fabric API Lookup API (v1), Fabric Content Registries (v0), Aspects, Fabric Models (v0), Mod Menu, Cloth Config v6, Fabric Biome API (v1), Fabric Data Generation API (v1), Fabric Lifecycle Events (v1), Fabric Object Builder API (v1), Fabric Rendering Fluids (v1), Fabric Loader, Fabric Events Lifecycle (v0), Fabric Events Interaction (v0), Fabric Crash Report Info (v1), Fabric Item API (v1), Pal, Fabric Key Binding API (v1))
|
[17:01:03] [Render thread/INFO] (Minecraft) Reloading ResourceManager: Default, Fabric Mods (Fabric Events Interaction (v0), Fabric Data Generation API (v1), Fabric BlockRenderLayer Registration (v1), Fabric Containers (v0), Fabric Dimensions API (v1), Fabric Lifecycle Events (v1), Fabric Entity Events (v1), Fabric Object Builder API (v1), Fabric Rendering Fluids (v1), Fabric Content Registries (v0), Origins, Fabric Rendering (v0), Pal, Fabric Models (v0), Fabric Events Lifecycle (v0), Fabric Screen Handler API (v1), Fabric Crash Report Info (v1), Fabric Item API (v1), Fabric Resource Loader (v0), Fabric Loader, Fabric Key Binding API (v1), Fabric Loot Tables (v1), Fabric Structure API (v1), Fabric Networking (v0), Fabric Renderer API (v1), Fabric Game Rule API (v1), Fabric Registry Sync (v0), Fabric Tag Extensions (v0), Apoli, Fabric Renderer - Indigo, Fabric Biome API (v1), Cloth Config v6, Fabric Key Bindings (v0), Fabric API Lookup API (v1), Fabric Rendering (v1), Fabric Screen API (v1), Fabric Particles (v1), Fabric Tool Attribute API (v1), Fabric Mining Level API (v1), Fabric Object Builders (v0), Mod Menu, Fabric Item Groups (v0), Fabric Renderer Registries (v1), Aspects, Fabric Rendering Data Attachment (v1), Fabric Game Test API (v1), Fabric Command API (v1), Fabric Textures (v0), Fabric Mining Levels (v0), Fabric API Base, Fabric API, Fabric Transfer API (v1), Fabric Commands (v0), Calio, Reach Entity Attributes, Fabric Networking API (v1))
|
||||||
[16:50:04] [Render thread/INFO] (aspects) This line is printed by an example mod mixin!
|
[17:01:03] [Render thread/INFO] (aspects) This line is printed by an example mod mixin!
|
||||||
[16:50:05] [Realms Notification Availability checker #1/INFO] (Minecraft) Could not authorize you against Realms server: Invalid session id
|
[17:01:04] [Realms Notification Availability checker #1/INFO] (Minecraft) Could not authorize you against Realms server: Invalid session id
|
||||||
[16:50:07] [Render thread/INFO] (Minecraft) OpenAL initialized on device CoreAudio Default
|
[17:01:06] [Render thread/INFO] (Minecraft) OpenAL initialized on device CoreAudio Default
|
||||||
[16:50:07] [Render thread/INFO] (Minecraft) Sound engine started
|
[17:01:06] [Render thread/INFO] (Minecraft) Sound engine started
|
||||||
[16:50:07] [Render thread/INFO] (Minecraft) Created: 1024x1024x4 minecraft:textures/atlas/blocks.png-atlas
|
[17:01:07] [Render thread/INFO] (Minecraft) Created: 1024x1024x4 minecraft:textures/atlas/blocks.png-atlas
|
||||||
[16:50:07] [Render thread/INFO] (Minecraft) Created: 256x128x4 minecraft:textures/atlas/signs.png-atlas
|
[17:01:07] [Render thread/INFO] (Minecraft) Created: 256x128x4 minecraft:textures/atlas/signs.png-atlas
|
||||||
[16:50:07] [Render thread/INFO] (Minecraft) Created: 1024x512x4 minecraft:textures/atlas/banner_patterns.png-atlas
|
[17:01:07] [Render thread/INFO] (Minecraft) Created: 1024x512x4 minecraft:textures/atlas/banner_patterns.png-atlas
|
||||||
[16:50:07] [Render thread/INFO] (Minecraft) Created: 1024x512x4 minecraft:textures/atlas/shield_patterns.png-atlas
|
[17:01:07] [Render thread/INFO] (Minecraft) Created: 1024x512x4 minecraft:textures/atlas/shield_patterns.png-atlas
|
||||||
[16:50:07] [Render thread/INFO] (Minecraft) Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas
|
[17:01:07] [Render thread/INFO] (Minecraft) Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas
|
||||||
[16:50:07] [Render thread/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas
|
[17:01:07] [Render thread/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas
|
||||||
[16:50:07] [Render thread/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas
|
[17:01:07] [Render thread/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas
|
||||||
[16:50:09] [Render thread/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas
|
[17:01:08] [Render thread/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas
|
||||||
[16:50:09] [Render thread/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas
|
[17:01:08] [Render thread/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas
|
||||||
[16:50:09] [Render thread/INFO] (Minecraft) Created: 256x128x0 minecraft:textures/atlas/mob_effects.png-atlas
|
[17:01:08] [Render thread/INFO] (Minecraft) Created: 256x128x0 minecraft:textures/atlas/mob_effects.png-atlas
|
||||||
[16:50:09] [Render thread/INFO] (aspects) This line is printed by an example mod mixin!
|
[17:01:08] [Render thread/INFO] (aspects) This line is printed by an example mod mixin!
|
||||||
[16:50:27] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
|
[17:01:14] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
|
||||||
[16:50:27] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0]
|
[17:01:14] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0]
|
||||||
[16:50:27] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498]
|
[17:01:14] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498]
|
||||||
[16:50:27] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498]
|
[17:01:14] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498]
|
||||||
[16:50:27] [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:01:14] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
|
||||||
[16:50:27] [Render thread/INFO] (Minecraft) Reloading ResourceManager: Default, Fabric Mods (Fabric Game Test API (v1), Origins, Fabric Tool Attribute API (v1), Apoli, Aspects)
|
[17:01:14] [Render thread/INFO] (Minecraft) Reloading ResourceManager: Default, Fabric Mods (Origins, Apoli, Fabric Tool Attribute API (v1), Aspects, Fabric Game Test API (v1))
|
||||||
[16:50:27] [Worker-Main-26/ERROR] (MultiJsonDataLoader) Couldn't parse data file aspects:frost_walker from aspects:powers/frost_walker.json
|
[17:01:14] [Render thread/INFO] (Minecraft) Loaded 7 recipes
|
||||||
com.google.gson.JsonParseException: java.io.EOFException: End of input at line 1 column 1 path $
|
[17:01:14] [Render thread/INFO] (Minecraft) Loaded 1143 advancements
|
||||||
at net.minecraft.util.JsonHelper.deserialize(JsonHelper.java:505) ~[minecraft-project-@-mapped.jar:?]
|
[17:01:14] [Render thread/INFO] (Apoli) Finished loading powers from data files. Registry contains 99 powers.
|
||||||
at net.minecraft.util.JsonHelper.deserialize(JsonHelper.java:542) ~[minecraft-project-@-mapped.jar:?]
|
[17:01:14] [Render thread/ERROR] (Origins) Origin "aspects:cryodisabled" contained unregistered power: "aspects:frost_walker"
|
||||||
at io.github.apace100.calio.data.MultiJsonDataLoader.lambda$prepare$1(MultiJsonDataLoader.java:62) ~[calio-v1.4.2.jar:?]
|
[17:01:14] [Render thread/ERROR] (Origins) Origin "aspects:cryodisabled" contained unregistered power: "aspects:cryo_secondary"
|
||||||
at java.util.ArrayList.forEach(ArrayList.java:1511) ~[?:?]
|
[17:01:14] [Render thread/ERROR] (Origins) Origin "aspects:hydrodisabled" contained unregistered power: "aspects:water_breathing"
|
||||||
at io.github.apace100.calio.data.MultiJsonDataLoader.prepare(MultiJsonDataLoader.java:48) ~[calio-v1.4.2.jar:?]
|
[17:01:14] [Render thread/ERROR] (Origins) Origin "aspects:hydrodisabled" contained unregistered power: "aspects:constitution"
|
||||||
at io.github.apace100.calio.data.MultiJsonDataLoader.prepare(MultiJsonDataLoader.java:24) ~[calio-v1.4.2.jar:?]
|
[17:01:14] [Render thread/ERROR] (Origins) Origin "aspects:hydrodisabled" contained unregistered power: "aspects:fire_damage"
|
||||||
at net.minecraft.resource.SinglePreparationResourceReloader.method_18791(SinglePreparationResourceReloader.java:11) ~[minecraft-project-@-mapped.jar:?]
|
[17:01:14] [Render thread/INFO] (Origins) Finished loading origins from data files. Registry contains 15 origins.
|
||||||
at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) [?:?]
|
[17:01:14] [Render thread/INFO] (Origins) Trying to read layer file: aspects:elements
|
||||||
at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) [?:?]
|
[17:01:14] [Render thread/INFO] (Origins) Trying to read layer file: origins:origin
|
||||||
at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) [?:?]
|
[17:01:14] [Render thread/INFO] (Origins) Trying to read layer file: aspects:origins
|
||||||
at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) [?:?]
|
[17:01:14] [Render thread/INFO] (Origins) Finished loading origin layers from data files. Read 3 layers.
|
||||||
at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) [?:?]
|
[17:01:14] [Render thread/INFO] (BiomeModificationImpl) Applied 0 biome modifications to 0 of 61 new biomes in 1.779 ms
|
||||||
at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) [?:?]
|
[17:01:16] [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'
|
||||||
at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) [?:?]
|
[17:01:16] [Server thread/INFO] (Minecraft) Starting integrated minecraft server version 1.18
|
||||||
Caused by: java.io.EOFException: End of input at line 1 column 1 path $
|
[17:01:16] [Server thread/INFO] (Minecraft) Generating keypair
|
||||||
at com.google.gson.stream.JsonReader.nextNonWhitespace(JsonReader.java:1395) ~[gson-2.8.8.jar:?]
|
[17:01:17] [Server thread/INFO] (Minecraft) Preparing start region for dimension minecraft:overworld
|
||||||
at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:548) ~[gson-2.8.8.jar:?]
|
[17:01:18] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
||||||
at com.google.gson.stream.JsonReader.peek(JsonReader.java:424) ~[gson-2.8.8.jar:?]
|
[17:01:18] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
||||||
at com.google.gson.internal.bind.TypeAdapters$29.read(TypeAdapters.java:703) ~[gson-2.8.8.jar:?]
|
[17:01:18] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
||||||
at com.google.gson.internal.bind.TypeAdapters$29.read(TypeAdapters.java:701) ~[gson-2.8.8.jar:?]
|
[17:01:18] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
||||||
at com.google.gson.internal.bind.TypeAdapters$35$1.read(TypeAdapters.java:908) ~[gson-2.8.8.jar:?]
|
[17:01:23] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
||||||
at net.minecraft.util.JsonHelper.deserialize(JsonHelper.java:503) ~[minecraft-project-@-mapped.jar:?]
|
[17:01:23] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
||||||
... 13 more
|
[17:01:23] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
||||||
[16:50:27] [Render thread/INFO] (Minecraft) Loaded 7 recipes
|
[17:01:23] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
||||||
[16:50:28] [Render thread/INFO] (Minecraft) Loaded 1143 advancements
|
[17:01:23] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
||||||
[16:50:28] [Render thread/INFO] (Apoli) Finished loading powers from data files. Registry contains 94 powers.
|
[17:01:23] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
||||||
[16:50:28] [Render thread/ERROR] (Origins) Origin "aspects:cryo" contained unregistered power: "aspects:frost_walker"
|
[17:01:23] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
||||||
[16:50:28] [Render thread/ERROR] (Origins) Origin "aspects:cryo" contained unregistered power: "aspects:cryo_secondary"
|
[17:01:23] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
||||||
[16:50:28] [Render thread/ERROR] (Origins) Origin "aspects:hydro" contained unregistered power: "aspects:water_breathing"
|
[17:01:23] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
||||||
[16:50:28] [Render thread/ERROR] (Origins) Origin "aspects:hydro" contained unregistered power: "aspects:constitution"
|
[17:01:23] [Render thread/INFO] (Minecraft) Preparing spawn area: 4%
|
||||||
[16:50:28] [Render thread/ERROR] (Origins) Origin "aspects:hydro" contained unregistered power: "aspects:fire_damage"
|
[17:01:24] [Render thread/INFO] (Minecraft) Preparing spawn area: 35%
|
||||||
[16:50:28] [Render thread/INFO] (Origins) Finished loading origins from data files. Registry contains 14 origins.
|
[17:01:24] [Render thread/INFO] (Minecraft) Preparing spawn area: 58%
|
||||||
[16:50:28] [Render thread/INFO] (Origins) Trying to read layer file: aspects:elements
|
[17:01:25] [Render thread/INFO] (Minecraft) Preparing spawn area: 63%
|
||||||
[16:50:28] [Render thread/INFO] (Origins) Trying to read layer file: origins:origin
|
[17:01:25] [Render thread/INFO] (Minecraft) Preparing spawn area: 88%
|
||||||
[16:50:28] [Render thread/INFO] (Origins) Trying to read layer file: aspects:origins
|
[17:01:26] [Render thread/INFO] (Minecraft) Time elapsed: 8776 ms
|
||||||
[16:50:28] [Render thread/INFO] (Origins) Finished loading origin layers from data files. Read 3 layers.
|
[17:01:26] [Server thread/INFO] (Minecraft) Changing view distance to 12, from 10
|
||||||
[16:50:28] [Render thread/INFO] (BiomeModificationImpl) Applied 0 biome modifications to 0 of 61 new biomes in 1.717 ms
|
[17:01:26] [Server thread/INFO] (Minecraft) Changing simulation distance to 12, from 0
|
||||||
[16:50:29] [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:01:26] [Server thread/INFO] (Minecraft) Player131[local:E:91aab204] logged in with entity id 183 at (-52.458286356428445, 64.0, -78.3884941042894)
|
||||||
[16:50:29] [Server thread/INFO] (Minecraft) Starting integrated minecraft server version 1.18
|
[17:01:26] [Server thread/INFO] (Minecraft) Player131 joined the game
|
||||||
[16:50:29] [Server thread/INFO] (Minecraft) Generating keypair
|
[17:01:26] [Render thread/INFO] (Minecraft) Loaded 0 advancements
|
||||||
[16:50:29] [Server thread/INFO] (Minecraft) Preparing start region for dimension minecraft:overworld
|
[17:01:27] [Render thread/WARN] (Minecraft) Unable to play empty soundEvent: minecraft:entity.cod.ambient
|
||||||
[16:50:29] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
[17:01:32] [Render thread/INFO] (Minecraft) Loaded 7 advancements
|
||||||
[16:50:29] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
[17:01:35] [Render thread/WARN] (Minecraft) Unable to play empty soundEvent: minecraft:entity.salmon.ambient
|
||||||
[16:50:32] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
[17:01:38] [Server thread/INFO] (Minecraft) Saving and pausing game...
|
||||||
[16:50:32] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
[17:01:38] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
|
||||||
[16:50:32] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
[17:01:38] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
|
||||||
[16:50:32] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
[17:01:38] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
|
||||||
[16:50:32] [Render thread/INFO] (Minecraft) Preparing spawn area: 0%
|
[17:01:40] [Render thread/INFO] (Minecraft) Stopping!
|
||||||
[16:50:32] [Render thread/INFO] (Minecraft) Preparing spawn area: 9%
|
[17:01:40] [Server thread/INFO] (Minecraft) Player131 lost connection: Disconnected
|
||||||
[16:50:33] [Render thread/INFO] (Minecraft) Preparing spawn area: 31%
|
[17:01:40] [Server thread/INFO] (Minecraft) Player131 left the game
|
||||||
[16:50:34] [Render thread/INFO] (Minecraft) Preparing spawn area: 68%
|
[17:01:40] [Server thread/INFO] (Minecraft) Stopping singleplayer server as player logged out
|
||||||
[16:50:34] [Render thread/INFO] (Minecraft) Preparing spawn area: 71%
|
[17:01:40] [Server thread/INFO] (Minecraft) Stopping server
|
||||||
[16:50:34] [Render thread/INFO] (Minecraft) Preparing spawn area: 95%
|
[17:01:40] [Server thread/INFO] (Minecraft) Saving players
|
||||||
[16:50:35] [Render thread/INFO] (Minecraft) Time elapsed: 5796 ms
|
[17:01:40] [Server thread/INFO] (Minecraft) Saving worlds
|
||||||
[16:50:35] [Server thread/INFO] (Minecraft) Changing view distance to 12, from 10
|
[17:01:40] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
|
||||||
[16:50:35] [Server thread/INFO] (Minecraft) Changing simulation distance to 12, from 0
|
[17:01:41] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
|
||||||
[16:50:35] [Server thread/INFO] (Minecraft) Player765[local:E:9637ecaa] logged in with entity id 185 at (-26.353851858843576, 63.0, -73.12167812331222)
|
[17:01:41] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
|
||||||
[16:50:35] [Server thread/INFO] (Minecraft) Player765 joined the game
|
[17:01:41] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (New World): All chunks are saved
|
||||||
[16:50:36] [Render thread/INFO] (Minecraft) Loaded 0 advancements
|
[17:01:41] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
|
||||||
[16:50:50] [Server thread/INFO] (Minecraft) Saving and pausing game...
|
[17:01:41] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM1): All chunks are saved
|
||||||
[16:50:50] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
|
[17:01:41] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage: All dimensions are saved
|
||||||
[16:50:50] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
|
|
||||||
[16:50:50] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
|
|
||||||
[16:50:58] [Server thread/INFO] (Origins) Player Player765 chose Origin: aspects:hydro, for layer: aspects:elements
|
|
||||||
[16:51:01] [Server thread/INFO] (Origins) Player Player765 chose Origin: origins:human, for layer: origins:origin
|
|
||||||
[16:51:02] [Server thread/INFO] (Origins) Player Player765 chose Origin: aspects:cryo, for layer: aspects:origins
|
|
||||||
[16:51:03] [Render thread/INFO] (Minecraft) Loaded 7 advancements
|
|
||||||
[16:51:18] [Render thread/INFO] (Minecraft) Stopping!
|
|
||||||
[16:51:18] [Server thread/INFO] (Minecraft) Player765 lost connection: Disconnected
|
|
||||||
[16:51:18] [Server thread/INFO] (Minecraft) Player765 left the game
|
|
||||||
[16:51:18] [Server thread/INFO] (Minecraft) Stopping singleplayer server as player logged out
|
|
||||||
[16:51:18] [Server thread/INFO] (Minecraft) Stopping server
|
|
||||||
[16:51:18] [Server thread/INFO] (Minecraft) Saving players
|
|
||||||
[16:51:18] [Server thread/INFO] (Minecraft) Saving worlds
|
|
||||||
[16:51:18] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
|
|
||||||
[16:51:19] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
|
|
||||||
[16:51:19] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
|
|
||||||
[16:51:19] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (New World): All chunks are saved
|
|
||||||
[16:51:19] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
|
|
||||||
[16:51:19] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM1): All chunks are saved
|
|
||||||
[16:51:19] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage: All dimensions are saved
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,45 @@
|
|||||||
|
{
|
||||||
|
"minecraft:recipes/transportation/acacia_boat": {
|
||||||
|
"criteria": {
|
||||||
|
"in_water": "2021-12-11 17:01:32 -0400"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:recipes/transportation/oak_boat": {
|
||||||
|
"criteria": {
|
||||||
|
"in_water": "2021-12-11 17:01:32 -0400"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:recipes/transportation/dark_oak_boat": {
|
||||||
|
"criteria": {
|
||||||
|
"in_water": "2021-12-11 17:01:32 -0400"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:recipes/transportation/birch_boat": {
|
||||||
|
"criteria": {
|
||||||
|
"in_water": "2021-12-11 17:01:32 -0400"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:recipes/transportation/jungle_boat": {
|
||||||
|
"criteria": {
|
||||||
|
"in_water": "2021-12-11 17:01:32 -0400"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:recipes/transportation/spruce_boat": {
|
||||||
|
"criteria": {
|
||||||
|
"in_water": "2021-12-11 17:01:32 -0400"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:adventure/adventuring_time": {
|
||||||
|
"criteria": {
|
||||||
|
"minecraft:stony_shore": "2021-12-11 17:01:26 -0400"
|
||||||
|
},
|
||||||
|
"done": false
|
||||||
|
},
|
||||||
|
"DataVersion": 2860
|
||||||
|
}
|
||||||
@@ -0,0 +1,46 @@
|
|||||||
|
{
|
||||||
|
"minecraft:recipes/transportation/acacia_boat": {
|
||||||
|
"criteria": {
|
||||||
|
"in_water": "2021-12-11 16:57:59 -0400"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:recipes/transportation/oak_boat": {
|
||||||
|
"criteria": {
|
||||||
|
"in_water": "2021-12-11 16:57:59 -0400"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:recipes/transportation/dark_oak_boat": {
|
||||||
|
"criteria": {
|
||||||
|
"in_water": "2021-12-11 16:57:59 -0400"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:recipes/transportation/birch_boat": {
|
||||||
|
"criteria": {
|
||||||
|
"in_water": "2021-12-11 16:57:59 -0400"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:recipes/transportation/jungle_boat": {
|
||||||
|
"criteria": {
|
||||||
|
"in_water": "2021-12-11 16:57:59 -0400"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:recipes/transportation/spruce_boat": {
|
||||||
|
"criteria": {
|
||||||
|
"in_water": "2021-12-11 16:57:59 -0400"
|
||||||
|
},
|
||||||
|
"done": true
|
||||||
|
},
|
||||||
|
"minecraft:adventure/adventuring_time": {
|
||||||
|
"criteria": {
|
||||||
|
"minecraft:stony_shore": "2021-12-11 16:57:40 -0400",
|
||||||
|
"minecraft:cold_ocean": "2021-12-11 16:57:59 -0400"
|
||||||
|
},
|
||||||
|
"done": false
|
||||||
|
},
|
||||||
|
"DataVersion": 2860
|
||||||
|
}
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
{"stats":{"minecraft:used":{"minecraft:flint_and_steel":1},"minecraft:mined":{"minecraft:fire":1},"minecraft:custom":{"minecraft:jump":2,"minecraft:time_since_rest":235,"minecraft:leave_game":1,"minecraft:walk_on_water_one_cm":133,"minecraft:sprint_one_cm":261,"minecraft:play_time":235,"minecraft:damage_taken":180,"minecraft:time_since_death":235,"minecraft:walk_one_cm":176,"minecraft:total_world_time":292,"minecraft:walk_under_water_one_cm":391,"minecraft:fly_one_cm":69}},"DataVersion":2860}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"stats":{"minecraft:used":{"minecraft:flint_and_steel":1},"minecraft:mined":{"minecraft:fire":1},"minecraft:custom":{"minecraft:jump":6,"minecraft:time_since_rest":679,"minecraft:leave_game":1,"minecraft:sprint_one_cm":904,"minecraft:play_time":679,"minecraft:walk_on_water_one_cm":156,"minecraft:time_since_death":679,"minecraft:walk_one_cm":590,"minecraft:sneak_time":13,"minecraft:total_world_time":864,"minecraft:walk_under_water_one_cm":582,"minecraft:swim_one_cm":1018,"minecraft:fly_one_cm":2837}},"DataVersion":2860}
|
||||||
@@ -1 +1 @@
|
|||||||
[{"name":"Player765","uuid":"5f90bf1f-575d-3542-89d7-731859eee6f2","expiresOn":"2022-01-11 16:50:58 -0400"},{"name":"Player701","uuid":"64aef991-58f2-3dcc-9bb9-8df57ee15c84","expiresOn":"2022-01-11 15:38:30 -0400"},{"name":"Player696","uuid":"7b2fc485-d259-389c-bb22-fc20b2865ae3","expiresOn":"2022-01-11 15:30:44 -0400"},{"name":"Player490","uuid":"e3cbbed2-a904-3501-9aba-c8ad5473501b","expiresOn":"2022-01-11 15:08:57 -0400"},{"name":"Player539","uuid":"449546f9-463a-3959-807a-caed6d7d3cca","expiresOn":"2022-01-11 13:25:42 -0400"},{"name":"Player460","uuid":"46c1b760-ca01-3b6f-9924-2c0867885238","expiresOn":"2022-01-11 12:45:23 -0400"},{"name":"Player162","uuid":"857939d7-cfd3-33df-b811-954d0fb8ea8e","expiresOn":"2022-01-11 12:42:56 -0400"},{"name":"Player652","uuid":"6f525ab9-4df4-3875-8280-4904a48f9cd7","expiresOn":"2022-01-11 12:40:13 -0400"},{"name":"Player990","uuid":"f109a640-cd93-3f49-a1e7-75407085bbf0","expiresOn":"2022-01-11 12:35:21 -0400"},{"name":"Player634","uuid":"bdc5f32b-6d6c-3510-b82f-68a782d73b82","expiresOn":"2022-01-11 12:27:50 -0400"},{"name":"Player281","uuid":"b743052f-5855-37e7-a97b-fd551acafef4","expiresOn":"2022-01-11 12:15:47 -0400"},{"name":"Player451","uuid":"efe2ab2d-072a-337a-9d65-10da4f48c969","expiresOn":"2022-01-11 11:56:14 -0400"},{"name":"Player211","uuid":"da0854f1-946e-3e92-942a-afd6fa88ef77","expiresOn":"2022-01-11 11:54:41 -0400"},{"name":"Player180","uuid":"2e271c1a-d081-32c8-843a-f79146152093","expiresOn":"2022-01-11 11:52:45 -0400"},{"name":"Player64","uuid":"46c6e0f0-63e8-3a58-bf04-38eedc04d149","expiresOn":"2022-01-11 11:50:14 -0400"},{"name":"Player756","uuid":"393f993c-07f1-322f-8af5-e61da4aa15d9","expiresOn":"2022-01-11 11:48:17 -0400"},{"name":"Player407","uuid":"da5cc374-3bd7-357d-9ee2-36c8124e8cc4","expiresOn":"2022-01-11 11:45:33 -0400"},{"name":"Player884","uuid":"16352087-2dde-32f0-819a-77046d6a13d3","expiresOn":"2022-01-11 11:43:05 -0400"},{"name":"Player916","uuid":"f7621ff1-653f-32ec-8621-00c0392bfbcc","expiresOn":"2022-01-11 11:38:26 -0400"},{"name":"Player798","uuid":"b91f0a72-af04-3f0f-855e-a1f30159432b","expiresOn":"2022-01-11 11:18:18 -0400"},{"name":"Player250","uuid":"c98187a9-e17b-3f48-8a33-882e62d18d19","expiresOn":"2022-01-11 09:30:21 -0400"},{"name":"Player340","uuid":"610176b0-594f-3c1a-b889-ed063dbc06ea","expiresOn":"2022-01-11 09:29:09 -0400"},{"name":"Player764","uuid":"07f066df-e334-33b1-a24c-2ec414c5ef02","expiresOn":"2022-01-11 09:14:46 -0400"},{"name":"Player355","uuid":"1b8d41ee-20e2-3849-a434-0d774a740ae1","expiresOn":"2022-01-11 07:43:58 -0400"},{"name":"Player762","uuid":"6be062b2-d5f9-3e2d-be7e-7d0540b46d78","expiresOn":"2022-01-11 07:38:05 -0400"},{"name":"Player891","uuid":"cfc92182-cce0-3b37-884c-2944311ee55d","expiresOn":"2022-01-11 07:18:36 -0400"}]
|
[{"name":"Player131","uuid":"27903c96-6327-3ab4-9463-21017fd8955d","expiresOn":"2022-01-11 17:01:26 -0400"},{"name":"Player596","uuid":"b6f7a483-95d4-3c1c-a80d-d6147f86003c","expiresOn":"2022-01-11 16:57:40 -0400"},{"name":"Player765","uuid":"5f90bf1f-575d-3542-89d7-731859eee6f2","expiresOn":"2022-01-11 16:50:58 -0400"},{"name":"Player701","uuid":"64aef991-58f2-3dcc-9bb9-8df57ee15c84","expiresOn":"2022-01-11 15:38:30 -0400"},{"name":"Player696","uuid":"7b2fc485-d259-389c-bb22-fc20b2865ae3","expiresOn":"2022-01-11 15:30:44 -0400"},{"name":"Player490","uuid":"e3cbbed2-a904-3501-9aba-c8ad5473501b","expiresOn":"2022-01-11 15:08:57 -0400"},{"name":"Player539","uuid":"449546f9-463a-3959-807a-caed6d7d3cca","expiresOn":"2022-01-11 13:25:42 -0400"},{"name":"Player460","uuid":"46c1b760-ca01-3b6f-9924-2c0867885238","expiresOn":"2022-01-11 12:45:23 -0400"},{"name":"Player162","uuid":"857939d7-cfd3-33df-b811-954d0fb8ea8e","expiresOn":"2022-01-11 12:42:56 -0400"},{"name":"Player652","uuid":"6f525ab9-4df4-3875-8280-4904a48f9cd7","expiresOn":"2022-01-11 12:40:13 -0400"},{"name":"Player990","uuid":"f109a640-cd93-3f49-a1e7-75407085bbf0","expiresOn":"2022-01-11 12:35:21 -0400"},{"name":"Player634","uuid":"bdc5f32b-6d6c-3510-b82f-68a782d73b82","expiresOn":"2022-01-11 12:27:50 -0400"},{"name":"Player281","uuid":"b743052f-5855-37e7-a97b-fd551acafef4","expiresOn":"2022-01-11 12:15:47 -0400"},{"name":"Player451","uuid":"efe2ab2d-072a-337a-9d65-10da4f48c969","expiresOn":"2022-01-11 11:56:14 -0400"},{"name":"Player211","uuid":"da0854f1-946e-3e92-942a-afd6fa88ef77","expiresOn":"2022-01-11 11:54:41 -0400"},{"name":"Player180","uuid":"2e271c1a-d081-32c8-843a-f79146152093","expiresOn":"2022-01-11 11:52:45 -0400"},{"name":"Player64","uuid":"46c6e0f0-63e8-3a58-bf04-38eedc04d149","expiresOn":"2022-01-11 11:50:14 -0400"},{"name":"Player756","uuid":"393f993c-07f1-322f-8af5-e61da4aa15d9","expiresOn":"2022-01-11 11:48:17 -0400"},{"name":"Player407","uuid":"da5cc374-3bd7-357d-9ee2-36c8124e8cc4","expiresOn":"2022-01-11 11:45:33 -0400"},{"name":"Player884","uuid":"16352087-2dde-32f0-819a-77046d6a13d3","expiresOn":"2022-01-11 11:43:05 -0400"},{"name":"Player916","uuid":"f7621ff1-653f-32ec-8621-00c0392bfbcc","expiresOn":"2022-01-11 11:38:26 -0400"},{"name":"Player798","uuid":"b91f0a72-af04-3f0f-855e-a1f30159432b","expiresOn":"2022-01-11 11:18:18 -0400"},{"name":"Player250","uuid":"c98187a9-e17b-3f48-8a33-882e62d18d19","expiresOn":"2022-01-11 09:30:21 -0400"},{"name":"Player340","uuid":"610176b0-594f-3c1a-b889-ed063dbc06ea","expiresOn":"2022-01-11 09:29:09 -0400"},{"name":"Player764","uuid":"07f066df-e334-33b1-a24c-2ec414c5ef02","expiresOn":"2022-01-11 09:14:46 -0400"},{"name":"Player355","uuid":"1b8d41ee-20e2-3849-a434-0d774a740ae1","expiresOn":"2022-01-11 07:43:58 -0400"},{"name":"Player762","uuid":"6be062b2-d5f9-3e2d-be7e-7d0540b46d78","expiresOn":"2022-01-11 07:38:05 -0400"},{"name":"Player891","uuid":"cfc92182-cce0-3b37-884c-2944311ee55d","expiresOn":"2022-01-11 07:18:36 -0400"}]
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"required": true,
|
"required": true,
|
||||||
"minVersion": "0.8",
|
"minVersion": "0.8",
|
||||||
"package": "net.fabricmc.example.mixin",
|
"package": "net.fabricmc.fishplex.mixin",
|
||||||
"compatibilityLevel": "JAVA_16",
|
"compatibilityLevel": "JAVA_16",
|
||||||
"mixins": [
|
"mixins": [
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
"type": "origins:lava_vision",
|
"type": "origins:lava_vision",
|
||||||
"s": 0,
|
"s": 0,
|
||||||
"v": 15
|
"v": 15,
|
||||||
|
"hidden":true
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,6 @@
|
|||||||
{
|
{
|
||||||
|
"type": "origins:action_over_time",
|
||||||
|
"interval": 20,
|
||||||
"entity_action": {
|
"entity_action": {
|
||||||
"type": "origins:damage",
|
"type": "origins:damage",
|
||||||
"amount": 2,
|
"amount": 2,
|
||||||
@@ -11,5 +13,7 @@
|
|||||||
"comparison": ">=",
|
"comparison": ">=",
|
||||||
"compare_to": 1
|
"compare_to": 1
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"name":"Water Damage",
|
||||||
|
"description":"When you touch water, you receive damage."
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user