-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
why do i use git for things that don't need it? // AreMine and modifi…
…cations
- Loading branch information
Showing
10 changed files
with
135 additions
and
17 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
src/main/resources/data/customsmp/origins/flying_squirrel.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"name": "Flying Squirrel", | ||
"description": "The Flying Squirrel has great mobility. It also does other stuff ig.", | ||
"powers": [ | ||
"origins:more_exhaustion", | ||
"customsmp:climbing", | ||
"customsmp:speed", | ||
"origins:elytra", | ||
"origins:fall_immunity", | ||
"origins:vegetarian", | ||
"origins:velvet_paws", | ||
"customsmp:very_small", | ||
"customsmp:jump", | ||
"origins:cat_vision", | ||
"customsmp:sunlight", | ||
"customsmp:jump_boost", | ||
"customsmp:frail_body" | ||
], | ||
"icon": { | ||
"item": "oak_sapling", | ||
"amount": 1 | ||
}, | ||
"impact": 2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
src/main/resources/data/customsmp/powers/night_glowing.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"name": "Glows at night", | ||
"description": "I think you know what this does", | ||
"type": "origins:action_over_time", | ||
"condition": { | ||
"inverted": true, | ||
"type": "origins:daytime" | ||
}, | ||
"entity_action": { | ||
"type": "origins:apply_effect", | ||
"effect": { | ||
"effect": "minecraft:glowing", | ||
"amplifier": 0, | ||
"duration": 100 | ||
} | ||
}, | ||
"interval": 80 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"name": "Moonlight", | ||
"description": "You get slowness I and weakness 1 in the day.", | ||
"type": "origins:multiple", | ||
"slowness": { | ||
"type": "origins:stacking_status_effect", | ||
"min_stacks": 0, | ||
"max_stacks": 1, | ||
"duration_per_stack": 60, | ||
"tick_rate": 20, | ||
"effect": { | ||
"effect": "minecraft:slowness", | ||
"is_ambient": true, | ||
"amplifier": 0, | ||
"show_particles": true, | ||
"show_icon": true | ||
}, | ||
"condition": { | ||
"type": "origins:daytime" | ||
} | ||
}, | ||
"weakness": { | ||
"type": "origins:stacking_status_effect", | ||
"min_stacks": 0, | ||
"max_stacks": 1, | ||
"duration_per_stack": 60, | ||
"tick_rate": 20, | ||
"effect": { | ||
"effect": "minecraft:weakness", | ||
"is_ambient": true, | ||
"amplifier": 0, | ||
"show_particles": true, | ||
"show_icon": true | ||
}, | ||
"condition": { | ||
"type": "origins:daytime" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"name": "Short", | ||
"description": "I hate midgets.", | ||
"type": "origins:action_on_callback", | ||
"entity_action_chosen": { | ||
"type": "origins:and", | ||
"actions": [ | ||
{ | ||
"type": "origins:execute_command", | ||
"command": "scale set pehkui:height 0.25" | ||
}, | ||
{ | ||
"type": "origins:execute_command", | ||
"command": "scale set pehkui:width 0.25" | ||
}, | ||
{ | ||
"type": "origins:execute_command", | ||
"command": "scale persist set true" | ||
} | ||
] | ||
}, | ||
"entity_action_lost": { | ||
"type": "origins:and", | ||
"actions": [ | ||
{ | ||
"type": "origins:execute_command", | ||
"command": "scale set pehkui:height 1" | ||
}, | ||
{ | ||
"type": "origins:execute_command", | ||
"command": "scale set pehkui:width 1" | ||
}, | ||
{ | ||
"type": "origins:execute_command", | ||
"command": "scale persist set false" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters