Compare commits

...

4 Commits

Author SHA1 Message Date
Pandro c29c7c35ec
Added badges, icons and sorted powers
Added badges to most powers with tooltips
Added icons to all origins
Sorted powers in origins to reflect impact a bit better
4 days ago
Pandro dbae419099
Added power "explosive_death"
Added power "explosive_death" which makes the player explode when dying (no block damage)
4 days ago
Pandro 0ee3a8601b
Added slow to dragon
Added power "slow"
    Slows down the player by a small amount
    Unfortunately still has FoV change
4 days ago
Pandro ced19e2f32
Minor Tweaks to origins
Changed impact ratings for dragon, protogen

Fixed typo in bat description
4 days ago

@ -1,11 +1,14 @@
{
"name": "Avian",
"description": "A feathered creature that prefers to live up high, is lightweight and can glide.",
"icon": {
"id": "minecraft:feather"
},
"powers": [
"feathermc:frail_flight",
"origins:fresh_air",
"feathermc:armor_slow",
"origins:lay_eggs",
"origins:fresh_air",
"origins:sprint_jump"
],
"order": 0,

@ -1,11 +1,14 @@
{
"name": "Bat",
"description": "A winged creature that prefers to stay in caves during the day. Adapted to low or nolight it can have difficulties dealing with day light.",
"description": "A winged creature that prefers to stay in caves during the day. Adapted to low or no light it can have difficulties dealing with day light.",
"icon": {
"id": "minecraft:coal"
},
"powers": [
"feathermc:frail_flight",
"feathermc:armor_slow",
"feathermc:dark_sleep",
"feathermc:blinding_lights",
"feathermc:armor_slow",
"feathermc:dark_vision"
],
"order": 1,

@ -1,13 +1,17 @@
{
"name": "Dragon",
"description": "You're a big dragon! Mighty, chunky and a bit slow.",
"icon": {
"id": "minecraft:blaze_powder"
},
"powers": [
"feathermc:frail_flight",
"feathermc:bulwark",
"feathermc:slow",
"feathermc:digestion",
"feathermc:wide_figure",
"origins:fire_immunity"
"origins:fire_immunity",
"feathermc:frail_flight"
],
"order": 6,
"impact": 2
"impact": 3
}

@ -1,13 +1,16 @@
{
"name": "Fox",
"description": "A vulpine creature with high-energy and a talent for mischief. Tiny and speedy!",
"icon": {
"id": "minecraft:sweet_berries"
},
"powers": [
"feathermc:fox_size",
"feathermc:speedy",
"feathermc:flammable",
"origins:sprint_jump",
"origins:nine_lives",
"origins:more_exhaustion",
"feathermc:fox_size",
"feathermc:flammable",
"feathermc:speedy"
"origins:more_exhaustion"
],
"order": 3,
"impact": 2

@ -1,12 +1,15 @@
{
"name": "El Gato",
"description": "A feline creature that excells in sneaking, jumps and agility.",
"icon": {
"id": "minecraft:cod"
},
"powers": [
"origins:sprint_jump",
"origins:nine_lives",
"feathermc:fall_immunity_or_death",
"feathermc:night_vision_focus",
"origins:velvet_paws",
"origins:sprint_jump",
"origins:nine_lives",
"origins:scare_creepers"
],
"order": 3,

@ -1,12 +1,16 @@
{
"name": "Protogen",
"description": "An artificial creature designed to adapt to its surroundings.",
"icon": {
"id": "minecraft:redstone"
},
"powers": [
"feathermc:pumpkin_hate",
"feathermc:regenerative_light",
"feathermc:bulwark",
"feathermc:integrated_armor"
"feathermc:integrated_armor",
"feathermc:explosive_death",
"feathermc:pumpkin_hate"
],
"order": 9,
"impact": 2
"impact": 3
}

@ -4,8 +4,9 @@
"description": "Your light build does not allow you to wear heavy armor without it slowing you down.",
"badges": [
{
"type": "origins:tooltip",
"sprite": "minecraft:textures/item/bone.png",
"text": "Ooh, shiny!"
"text": "Wearing too much armor will make you slow."
}
],
"entity_action": {

@ -33,5 +33,12 @@
]
},
"name": "Blinded by the Lights",
"description": "Being in too much light blinds you. Consider wearing something on your head."
"description": "Being in too much light blinds you. Consider wearing something on your head.",
"badges": [
{
"type": "origins:tooltip",
"sprite": "minecraft:textures/block/glowstone.png",
"text": "Standing in bright light spots will give you blindness unless you wear headwear."
}
]
}

@ -6,5 +6,12 @@
"compare_to": 0.1
},
"name": "Dark Slumber",
"description": "Adapted to dark environments you're uncomfortable in the light. You can only sleep in dark environments."
"description": "Adapted to dark environments you're uncomfortable in the light. You can only sleep in dark environments.",
"badges": [
{
"type": "origins:tooltip",
"sprite": "minecraft:textures/item/coal.png",
"text": "You can only sleep when standing in a very dark spot."
}
]
}

@ -3,6 +3,13 @@
"strength": 0.5,
"name": "Darkvision",
"description": "You can see in the dark. Somewhat.",
"badges": [
{
"type": "origins:tooltip",
"sprite": "minecraft:textures/item/coal.png",
"text": "You gain weak night vision when standing in the dark."
}
],
"condition": {
"type": "origins:brightness",
"comparison": "<=",

@ -0,0 +1,26 @@
{
"type": "origins:action_on_death",
"name": "Explosive Core",
"description": "You got a core that could take out your environment when going critical.",
"badges": [
{
"type": "origins:tooltip",
"sprite": "minecraft:textures/item/gunpowder.png",
"text": "You will explode on death!"
}
],
"bientity_action": {
"type": "origins:and",
"actions": [
{
"type": "origins:target_action",
"action": {
"type": "origins:explode",
"power": 5,
"destruction_type": "keep",
"damage_slef": false
}
}
]
}
}

@ -2,6 +2,13 @@
"type": "origins:invulnerability",
"name": "Falling on your paws",
"description": "You always land on your paws. That can't save you from too much height though.",
"badges": [
{
"type": "origins:tooltip",
"sprite": "minecraft:textures/item/feather.png",
"text": "No fall damage at all unless you fall from too high."
}
],
"condition": {
"type": "origins:fall_distance",
"comparison": "<=",

@ -2,6 +2,13 @@
"type": "origins:multiple",
"name": "Flammable",
"description": "Your fluffy fur turns out to be very flammable! Better not catch fire!",
"badges": [
{
"type": "origins:tooltip",
"sprite": "minecraft:textures/item/blaze_powder.png",
"text": "You take extra fire damage!"
}
],
"flammable_effect": {
"type": "origins:action_when_damage_taken",
"cooldown": 20,

@ -2,6 +2,13 @@
"type": "origins:action_on_callback",
"name": "Fox sized",
"description": "You're small!",
"badges": [
{
"type": "origins:tooltip",
"sprite": "minecraft:textures/item/sweet_berries.png",
"text": "You are 25% smaller than others!"
}
],
"entity_chosen_when_orb": true,
"entity_action_chosen": {
"type": "origins:and",

@ -2,6 +2,23 @@
"type": "origins:multiple",
"name": "Frail Flight",
"description": "Able to use your wings to glide but only when you're not hurt.",
"badges": [
{
"type": "origins:tooltip",
"sprite": "minecraft:textures/item/elytra.png",
"text": "You can glide as if wearing an elytra!"
},
{
"type": "origins:tooltip",
"sprite": "minecraft:textures/item/feather.png",
"text": "If you're hurt you can not fly anymore! Stay healthy!"
},
{
"type": "origins:tooltip",
"sprite": "minecraft:textures/item/firework_rocket.png",
"text": "You can't use firework anymore. No boosting!"
}
],
"frail_flight": {
"type": "origins:elytra_flight",
"render_elytra": true,

@ -2,6 +2,13 @@
"type": "origins:multiple",
"name": "G-g-glitchy",
"description": "Your visual processor is a prototype. Some objects are just beyond your comprehension",
"badges": [
{
"type": "origins:tooltip",
"sprite": "minecraft:textures/block/carved_pumpkin.png",
"text": "ErRoR? [Object Unknown]"
}
],
"prevent_eating": {
"type": "origins:prevent_item_use",
"item_condition": {

@ -0,0 +1,21 @@
{
"type": "origins:multiple",
"name": "Slow",
"description": "You're not the quickest.",
"badges": [
{
"type": "origins:tooltip",
"sprite": "minecraft:textures/item/chain.png",
"text": "You are permanently slower than usual."
}
],
"speed": {
"type": "origins:attribute",
"modifier": {
"id": "slow_s",
"attribute": "minecraft:generic.movement_speed",
"amount": -0.01,
"operation": "add_value"
}
}
}

@ -2,6 +2,23 @@
"type": "origins:multiple",
"name": "Speedy",
"description": "You're quick and hyper active! You also get hungry more quickly.",
"badges": [
{
"type": "origins:tooltip",
"sprite": "minecraft:textures/item/firework_rocket.png",
"text": "Your movement speed is a bit higher than usual."
},
{
"type": "origins:tooltip",
"sprite": "minecraft:textures/item/stone_sword.png",
"text": "Your attack speed is higher than usual."
},
{
"type": "origins:tooltip",
"sprite": "minecraft:textures/item/rotten_flesh.png",
"text": "Your hunger depletes more quickly"
}
],
"speed": {
"type": "origins:attribute",
"modifier": {

Loading…
Cancel
Save