properly named it and added a new mod image

This commit is contained in:
Ryan
2024-01-20 12:05:40 +02:00
parent 1260a1271e
commit e3d2c298c2
148 changed files with 190 additions and 220 deletions

View File

@@ -1,24 +1 @@
# Changes
## 1.19-0.0.3-PR
- created Mync
- created Lata (name TBD)
- removed not my code
- added Mync Eye for Mync origin icon
- cosmo please fucking finish the monarch
## 1.19-0.0.4-PR
- created Kefflade
- cosmo finished monarch
## 1.19.2-0.0.5-PR
- created Müs
- added umbrella
- changed all latos vulnerability to sun damage
- added more keybinds to origins
- set incompatibility with origins extra keybinds mod
- updated to 1.19.2
- made latos tall
- a few bug fixes
## 1.20.1-0.0.6-PR
- update to 1.20.1
# Changes

View File

@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '1.3-SNAPSHOT'
id 'fabric-loom' version '1.5-SNAPSHOT'
id 'maven-publish'
}

View File

@@ -7,14 +7,12 @@ yarn_mappings=1.20.1+build.10
loader_version=0.14.24
# Mod Properties
mod_version=1.20.1-0.0.6-PR
maven_group=dev.gamer
archives_base_name=GamerOrigins
mod_version=1.20.1-0.0.1-PR
maven_group=dev.arcmods
archives_base_name=TerraOriginum
# Dependencies
fabric_version=0.90.7+1.20.1
modmenu_version=7.2.2
pehkui_version=3.7.8
origins_version=0dfec42
# i want to fucking die, then do it

View File

@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

View File

@@ -1,17 +1,18 @@
package net.arcmods.gamer.gamerorigins;
package net.arcmods.arcteam.terraoriginum;
import net.arcmods.gamer.gamerorigins.items.mync_eye;
import net.arcmods.gamer.gamerorigins.items.umbrella;
import net.arcmods.gamer.gamerorigins.registry.modEnchantments;
import net.arcmods.arcteam.terraoriginum.items.mync_eye;
import net.arcmods.arcteam.terraoriginum.items.umbrella;
import net.arcmods.arcteam.terraoriginum.registry.modEnchantments;
import net.fabricmc.api.ModInitializer;
import net.fabricmc.fabric.api.itemgroup.v1.ItemGroupEvents;
import net.minecraft.item.ItemGroups;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import java.awt.Image;
public class Gamer implements ModInitializer {
public static final String MOD_ID = "gamerorigins";
public class TerraOriginum implements ModInitializer {
public static final String MOD_ID = "terraoriginum";
public static final Logger LOGGER = LogManager.getLogger(MOD_ID);
@@ -22,6 +23,6 @@ public class Gamer implements ModInitializer {
modEnchantments.register();
ItemGroupEvents.modifyEntriesEvent(ItemGroups.TOOLS).register((content) -> content.add(umbrella.UMBRELLA));
LOGGER.info("man this Origins is Gamer");
LOGGER.info("man this Origins is gaming");
}
}

View File

@@ -1,4 +1,4 @@
package net.arcmods.gamer.gamerorigins.client;
package net.arcmods.arcteam.terraoriginum.client;
import io.github.apace100.apoli.ApoliClient;
import net.fabricmc.api.ClientModInitializer;
@@ -9,7 +9,7 @@ import org.lwjgl.glfw.GLFW;
import java.util.List;
public class GamerKeybinds implements ClientModInitializer {
public class TerraKeybinds implements ClientModInitializer {
public List<String> keys = List.of("ternary","quaternary","quinary","senary","septenary","octonary","nonary","denary");

View File

@@ -1,6 +1,6 @@
package net.arcmods.gamer.gamerorigins.client;
package net.arcmods.arcteam.terraoriginum.client;
import net.arcmods.gamer.gamerorigins.items.umbrella;
import net.arcmods.arcteam.terraoriginum.items.umbrella;
import net.fabricmc.api.ClientModInitializer;
public class layerRenderer implements ClientModInitializer {

View File

@@ -1,4 +1,4 @@
package net.arcmods.gamer.gamerorigins.enchantment;
package net.arcmods.arcteam.terraoriginum.enchantment;
import net.minecraft.enchantment.Enchantment;
import net.minecraft.enchantment.EnchantmentTarget;

View File

@@ -1,5 +1,6 @@
package net.arcmods.gamer.gamerorigins.items;
package net.arcmods.arcteam.terraoriginum.items;
import net.arcmods.arcteam.terraoriginum.TerraOriginum;
import net.minecraft.item.Item;
import net.minecraft.util.Identifier;
import net.minecraft.util.Rarity;
@@ -11,7 +12,7 @@ public class mync_eye {
public static final Item MYNC_EYE = new Item(new Item.Settings().maxCount(1).rarity(Rarity.EPIC));
public static void register() {
Registry.register(Registries.ITEM, new Identifier("gamerorigins", "mync_eye"), MYNC_EYE);
Registry.register(Registries.ITEM, new Identifier(TerraOriginum.MOD_ID, "mync_eye"), MYNC_EYE);
}
}

View File

@@ -1,6 +1,6 @@
package net.arcmods.gamer.gamerorigins.items;
package net.arcmods.arcteam.terraoriginum.items;
import net.arcmods.gamer.gamerorigins.Gamer;
import net.arcmods.arcteam.terraoriginum.TerraOriginum;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.fabricmc.fabric.api.client.rendering.v1.ColorProviderRegistry;
@@ -15,7 +15,7 @@ public class umbrella {
public static void registerItems() {
Registry.register(Registries.ITEM, new Identifier(Gamer.MOD_ID, "umbrella"), UMBRELLA);
Registry.register(Registries.ITEM, new Identifier(TerraOriginum.MOD_ID, "umbrella"), UMBRELLA);
}

View File

@@ -1,4 +1,4 @@
package net.arcmods.gamer.gamerorigins.items;
package net.arcmods.arcteam.terraoriginum.items;
import net.minecraft.item.DyeableItem;
import net.minecraft.item.Item;

View File

@@ -1,6 +1,6 @@
package net.arcmods.gamer.gamerorigins.mixin;
package net.arcmods.arcteam.terraoriginum.mixin;
import net.arcmods.gamer.gamerorigins.items.umbrella;
import net.arcmods.arcteam.terraoriginum.items.umbrella;
import net.minecraft.entity.Entity;
import net.minecraft.item.ItemStack;
import net.minecraft.util.math.BlockPos;

View File

@@ -1,8 +1,8 @@
package net.arcmods.gamer.gamerorigins.mixin;
package net.arcmods.arcteam.terraoriginum.mixin;
import io.github.apace100.apoli.power.factory.condition.EntityConditions;
import io.github.apace100.calio.data.SerializableData;
import net.arcmods.gamer.gamerorigins.items.umbrella;
import net.arcmods.arcteam.terraoriginum.items.umbrella;
import net.minecraft.entity.Entity;
import net.minecraft.item.ItemStack;
import org.spongepowered.asm.mixin.Mixin;

View File

@@ -1,7 +1,7 @@
package net.arcmods.gamer.gamerorigins.mixin;
package net.arcmods.arcteam.terraoriginum.mixin;
import io.github.apace100.apoli.mixin.EntityAccessor;
import net.arcmods.gamer.gamerorigins.items.umbrella;
import net.arcmods.arcteam.terraoriginum.items.umbrella;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityType;
import net.minecraft.entity.EquipmentSlot;

View File

@@ -1,7 +1,7 @@
package net.arcmods.gamer.gamerorigins.registry;
package net.arcmods.arcteam.terraoriginum.registry;
import net.arcmods.gamer.gamerorigins.Gamer;
import net.arcmods.gamer.gamerorigins.enchantment.SunProtectionEnchantment;
import net.arcmods.arcteam.terraoriginum.TerraOriginum;
import net.arcmods.arcteam.terraoriginum.enchantment.SunProtectionEnchantment;
import net.minecraft.enchantment.Enchantment;
import net.minecraft.enchantment.EnchantmentTarget;
import net.minecraft.entity.EquipmentSlot;
@@ -18,7 +18,7 @@ public class modEnchantments {
}
private static Enchantment register(String path, Enchantment enchantment) {
Registry.register(Registries.ENCHANTMENT, new Identifier(Gamer.MOD_ID, path), enchantment);
Registry.register(Registries.ENCHANTMENT, new Identifier(TerraOriginum.MOD_ID, path), enchantment);
return enchantment;
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

View File

@@ -1,138 +0,0 @@
{
//-----Icon Items-----//
"item.gamerorigins.mync_eye": "you shouldnt have this",
"item.gamerorigins.umbrella": "Umbrella",
//-----Lato-----//
"origin.gamerorigins.lato.name": "Lato",
"origin.gamerorigins.lato.description": "A creature from a faraway world, one with very little sun, one with a very high gravitational pull.\nShortened from Latian to Lato.",
"power.gamerorigins.latopowers/sun_damage.name": "Xeroderma Pigmentosum",
"power.gamerorigins.latopowers/insomnia.name": "Creature of the night",
"power.gamerorigins.latopowers/insomnia.description": "You cannot sleep during night",
"power.gamerorigins.latopowers/sun_damage.description": "Your skin sizzles up in the sun.",
"power.gamerorigins.latopowers/teleport.name": "Teleportation",
"power.gamerorigins.latopowers/teleport.description": "You can teleport some distance away.",
"power.gamerorigins.latopowers/perfect_vision.name": "Perfect Vision",
"power.gamerorigins.latopowers/perfect_vision.description": "Carefully constructed eyes that allow for perfect vision, they also are toggleable.",
"power.gamerorigins.latopowers/rage.name": "Rage",
"power.gamerorigins.latopowers/rage.description": "Rage gives strength and speed for a short period of time.",
"power.gamerorigins.latopowers/strong.name": "Strong",
"power.gamerorigins.latopowers/strong.description": "You do more damage than regular people.",
"power.gamerorigins.latopowers/seventeen_lives.name": "Seventeen Lives",
"power.gamerorigins.latopowers/seventeen_lives.description": "Your body causes you to have Seventeen hearts.",
"power.gamerorigins.latopowers/water_vulnerability.name": "Boiling Water",
"power.gamerorigins.latopowers/water_vulnerability.description": "Your blood boils in water, causing you to take damage after prolonged exposure to it.",
"power.gamerorigins.latopowers/lato_blooded.name": "Lato Blooded",
"power.gamerorigins.latopowers/lato_blooded.description": "A Latian's blood can work out most poisoning by itself.",
"power.gamerorigins.latopowers/tailwind.name": "Tailwind",
"power.gamerorigins.latopowers/tailwind.description": "You are a little bit quicker on foot than others.",
"power.gamerorigins.latopowers/natural_armor.name": "Thick Skin",
"power.gamerorigins.latopowers/natural_armor.description": "Even without wearing armor, your skin provides natural protection.",
"power.gamerorigins.latopowers/long_arms.name": "Long Arms",
"power.gamerorigins.latopowers/long_arms.description": "You have slightly longer arms.",
"power.gamerorigins.latopowers/lightweight.name": "Lightweight",
"power.gamerorigins.latopowers/lightweight.description": "You are not very heavy, so dripleaves don't tilt under your weight.",
"power.gamerorigins.latopowers/tall.name": "Tall",
"power.gamerorigins.latopowers/tall.description": "You are half a block taller.",
"death.attack.burn_in_sun": "%1$s sizzled up in the sun.",
"death.attack.burn_in_sun.player": "%1$s sizzled up in the sun whilst trying to escape %2$s.",
"death.attack.boil_in_water": "%1$s was boiled alive",
"death.attack.boil_in_water.player": "%1$s was boiled alive whilst trying to escape %2$s",
//-----Mync-----//
"origin.gamerorigins.mync.name": "Mync",
"origin.gamerorigins.mync.description": "Myncs are blind Latos. They can't teleport like regular Latos but are stronger than most Latos.",
"power.gamerorigins.myncpowers/mync_blind.name": "Mushroom Sense",
"power.gamerorigins.myncpowers/mync_blind.description": "Standing by mushrooms or mushroom related blocks allows you to connect to and feel through their roots to better perceive your surroundings.",
"power.gamerorigins.myncpowers/mync_tailwind.name": "Tailwind",
"power.gamerorigins.myncpowers/mync_tailwind.description": "You are a little bit quicker on foot than others.",
"power.gamerorigins.myncpowers/mync_rage.name": "Rage",
"power.gamerorigins.myncpowers/mync_rage.description": "Rage gives strength and speed for a short period of time.",
"power.gamerorigins.myncpowers/mync_natural_armour.name": "Thick Skin",
"power.gamerorigins.myncpowers/mync_natural_armour.description": "Even without wearing armor, your skin provides natural protection.",
"power.gamerorigins.myncpowers/mync_vision.name": "Blind",
"power.gamerorigins.myncpowers/mync_vision.description": "Myncs, being blind Latos, have to perceive their environment through sound.",
"power.gamerorigins.myncpowers/mync_echolocate.name": "Echolocation",
"power.gamerorigins.myncpowers/mync_echolocate.description": "Use your [Tab button] to make a sound to figure out how your surrounding area looks like. Nearby wool will stop this from working, but you can use a night vision potion to get it to work permanently.",
"power.gamerorigins.myncpowers/mync_strong.name": "Strong",
"power.gamerorigins.myncpowers/mync_strong.description": "You do more damage than regular people.",
//-----Immortal Human-----//
"origin.gamerorigins.immortal_human.name": "Immortal Human",
"origin.gamerorigins.immortal_human.description": "You hate life, but out of spite, the gods cursed you with being immortal. How unfortunate.",
"power.gamerorigins.immortal_humanpowers/immortal.name": "Immortal",
"power.gamerorigins.immortal_humanpowers/immortal.description": "You cannot die, no matter how hard you try.",
"power.gamerorigins.immortal_humanpowers/pathetic.name": "Pathetic",
"power.gamerorigins.immortal_humanpowers/pathetic.description": "You cannot deal damage to anything.",
//------Kefflade-----//
"origin.gamerorigins.kefflade.name": "Kefflade",
"origin.gamerorigins.kefflade.description": "A Lato, versed in magic",
"power.gamerorigins.keffladepowers/darkchromes.name": "Dark Chromes",
"power.gamerorigins.keffladepowers/darkchromes.description": "You have a resource bar that indicates how many Dark Chromes you have left, Dark Chromes are needed to use some abilities.\nYou gain Dark Chromes passively every second. Holding a book in your offhand gives you increased Dark Chromes regen.\n(Max Dark Chromes is 200)",
"power.gamerorigins.keffladepowers/bookshelfnear.name": "Book Lover",
"power.gamerorigins.keffladepowers/bookshelfnear.description": "Being near bookshelves increases your Dark Chromes per second, and also gives you bonuses.\n(Stacking up to 10 bookshelves)",
"power.gamerorigins.keffladepowers/darkfavour.name": "Magic Mastery",
"power.gamerorigins.keffladepowers/darkfavour.description": "Holding a book in your offhand gives you increased magic damage and resistance.",
"power.gamerorigins.keffladepowers/honeychromes.name": "Sweet Sweet Honey",
"power.gamerorigins.keffladepowers/honeychromes.description": "You like the taste of honey, it fills you with energy. restoring 15 Dark Chromes per bottle.",
"power.gamerorigins.keffladepowers/supernova.name": "Supernova",
"power.gamerorigins.keffladepowers/supernova.description": "(Primary + 30 Dark Chromes)You summon a rocket that explodes in the direction you're looking at.",
"power.gamerorigins.keffladepowers/nodmg.name": "Not Sharp",
"power.gamerorigins.keffladepowers/nodmg.description": "Your swords and axes don't exactly deal as much damage as you expected.",
"power.gamerorigins.keffladepowers/lightningbolt.name": "Lightning Bolt",
"power.gamerorigins.keffladepowers/lightningbolt.description": "(Primary + Sneaking + 90 Dark Chromes)You summon a lightning bolt in the direction you're looking at.",
"power.gamerorigins.keffladepowers/whitemagic.name": "White Magic",
"power.gamerorigins.keffladepowers/whitemagic.description": "(Secondary + 50 Dark Chromes): Shoot out a healing ray that heals whatever target it hits overtime. 60% of healing is given instantly and the rest is given over the next seconds. Undead get damaged instead.",
"power.gamerorigins.keffladepowers/shadowblast.name": "Shadow Blast",
"power.gamerorigins.keffladepowers/shadowblast.description": "(Secondary + Sneaking + 40 Dark Chromes): You channel the arts of shadow magic to unleash a shadow bolt in the direction you're facing. Blinding, Slowing and damaging the target.",
"power.gamerorigins.keffladepowers/darkball.name": "Ender Fireball",
"power.gamerorigins.keffladepowers/darkball.description": "(ternary - 20 Dark Chromes): You channel the magic arts of ender magic to fire an enderdragon fireball to the direction you're looking at.",
"power.gamerorigins.keffladepowers/cursedexplosions.name": "Unstable Magic",
"power.gamerorigins.keffladepowers/cursedexplosions.description": "(Ternary + Sneaking + 70 Dark Chromes): With a very long cooldown, You fire an explosive projectile to the target infront of you with a range of 20 blocks. Hitting a target marks them. After 4 seconds the chain explosions start to happen. each explosion takes a second. for a max of 2 explosions in total.",
"power.gamerorigins.keffladepowers/kefflade_natural_armour.name": "Thick Skin",
"power.gamerorigins.keffladepowers/kefflade_natural_armour.description": "Even without wearing armor, your skin provides natural protection.",
"power.gamerorigins.keffladepowers/startbox.name": "Starting Box",
"power.gamerorigins.keffladepowers/startbox.description": "You will receive some items to start your journey with.",
"power.gamerorigins.keffladepowers/leatherarmour.name": "Leather Armour",
"power.gamerorigins.keffladepowers/leatherarmour.description": "You can only wear up to leather armour",
//-----Monarch-----//
"origin.gamerorigins.monarch.name": "Monarch",
"origin.gamerorigins.monarch.description": "The Monarchs were the first of them all, they took pride in the fact that they were superior to all others of their time, that was until newer and better species came along and drove them to near extinction. \nNow they have returned after evolving into something far more powerful",
"power.gamerorigins.monarchpowers/hyperefficient_blood.name": "Hyperefficient Blood",
"power.gamerorigins.monarchpowers/hyperefficient_blood.description": "Your blood is extremely efficient, destroying any poisons within their bloodstream before they have a chance to do any damage",
"power.gamerorigins.monarchpowers/solar_energy.name": "Solar Energy",
"power.gamerorigins.monarchpowers/solar_energy.description": "You draw energy from the sun and store it within your body, and access it at will to use various abilities",
"power.gamerorigins.monarchpowers/sun_fueled.name": "Sun Fueled",
"power.gamerorigins.monarchpowers/sun_fueled.description": "You have evolved to draw power from the sun, leading you to become more powerful during the day",
"power.gamerorigins.monarchpowers/nuclear_rush.name": "Nuclear Rush",
"power.gamerorigins.monarchpowers/nuclear_rush.description": "using the sun energy stored within your body, you can temporarily start a weak thermonuclear reaction, pushing your body beyond the limitations of living flesh.",
"power.gamerorigins.monarchpowers/instant_transmission.name": "Instant Transmission",
"power.gamerorigins.monarchpowers/instant_transmission.description": "Use the thermonuclear energy stored in your body to erase the space between you and your target",
"power.gamerorigins.monarchpowers/nyctophobia.name": "Nyctophobia",
"power.gamerorigins.monarchpowers/nyctophobia.description": "Your power is derived from the sun, making you weaker during the night",
"power.gamerorigins.monarchpowers/shining.name": "Shining",
"power.gamerorigins.monarchpowers/shining.description": "An entire lifetime of absorbing the sun's energy makes you radiate it's light",
//-----Müs-----//
"origin.gamerorigins.mus.name": "Müs",
"origin.gamerorigins.mus.description": "A Lato, seen as an outcast among outcasts.",
"power.gamerorigins.mus/closeeyes.name": "Close eyes",
"power.gamerorigins.mus/closeeyes.description": "As your eyes close, you let your mind divine the world. Visions of what could be halt your reason and feed your fascination.",
"power.gamerorigins.mus/fascination.name": "Fascination",
"power.gamerorigins.mus/fascination.description": "Your inspiration, your purpose. As it grows, so too shall your strength.",
"power.gamerorigins.mus/flexibility.name": "Flexible",
"power.gamerorigins.mus/flexibility.description": "No physical restraints will hold you back. You reject the safety of heavy armour in pursuit of a greater freedom.",
"power.gamerorigins.mus/mus_natural_armor.name": "Thick Skin",
"power.gamerorigins.mus/mus_natural_armor.description": "Even without wearing armor, your skin provides natural protection.",
"power.gamerorigins.mus/no_villager.name": "Superiority",
"power.gamerorigins.mus/no_villager.description": "You cannot stand how foolish villagers are. As such, you cannot trade with them.",
"power.gamerorigins.mus/reason.name": "Reason",
"power.gamerorigins.mus/reason.description": "As it grows and you become of sound mind, your fascination drains. It grants you agency, allows you to bend your body in ways you have not thought possible.",
"power.gamerorigins.mus/lookwithin.name": "Look within",
"power.gamerorigins.mus/lookwithin.description": "You discard your reason, you find inspiration within your own mortal form. You must use a blade.",
"power.gamerorigins.mus/fascinationeffects.name": "Awareness",
"power.gamerorigins.mus/fascinationeffects.description": "As your fascination reaches a glorious epitome, all is revealed. The higher you rise the more you see."
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 117 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 479 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 517 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 460 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 746 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 900 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 117 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 292 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 117 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 409 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 710 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 478 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 611 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 117 B

View File

@@ -0,0 +1,138 @@
{
//-----Icon Items-----//
"item.terraoriginum.mync_eye": "you shouldnt have this",
"item.terraoriginum.umbrella": "Umbrella",
//-----Lato-----//
"origin.terraoriginum.lato.name": "Lato",
"origin.terraoriginum.lato.description": "A creature from a faraway world, one with very little sun, one with a very high gravitational pull.\nShortened from Latian to Lato.",
"power.terraoriginum.latopowers/sun_damage.name": "Xeroderma Pigmentosum",
"power.terraoriginum.latopowers/insomnia.name": "Creature of the night",
"power.terraoriginum.latopowers/insomnia.description": "You cannot sleep during night",
"power.terraoriginum.latopowers/sun_damage.description": "Your skin sizzles up in the sun.",
"power.terraoriginum.latopowers/teleport.name": "Teleportation",
"power.terraoriginum.latopowers/teleport.description": "You can teleport some distance away.",
"power.terraoriginum.latopowers/perfect_vision.name": "Perfect Vision",
"power.terraoriginum.latopowers/perfect_vision.description": "Carefully constructed eyes that allow for perfect vision, they also are toggleable.",
"power.terraoriginum.latopowers/rage.name": "Rage",
"power.terraoriginum.latopowers/rage.description": "Rage gives strength and speed for a short period of time.",
"power.terraoriginum.latopowers/strong.name": "Strong",
"power.terraoriginum.latopowers/strong.description": "You do more damage than regular people.",
"power.terraoriginum.latopowers/seventeen_lives.name": "Seventeen Lives",
"power.terraoriginum.latopowers/seventeen_lives.description": "Your body causes you to have Seventeen hearts.",
"power.terraoriginum.latopowers/water_vulnerability.name": "Boiling Water",
"power.terraoriginum.latopowers/water_vulnerability.description": "Your blood boils in water, causing you to take damage after prolonged exposure to it.",
"power.terraoriginum.latopowers/lato_blooded.name": "Lato Blooded",
"power.terraoriginum.latopowers/lato_blooded.description": "A Latian's blood can work out most poisoning by itself.",
"power.terraoriginum.latopowers/tailwind.name": "Tailwind",
"power.terraoriginum.latopowers/tailwind.description": "You are a little bit quicker on foot than others.",
"power.terraoriginum.latopowers/natural_armor.name": "Thick Skin",
"power.terraoriginum.latopowers/natural_armor.description": "Even without wearing armor, your skin provides natural protection.",
"power.terraoriginum.latopowers/long_arms.name": "Long Arms",
"power.terraoriginum.latopowers/long_arms.description": "You have slightly longer arms.",
"power.terraoriginum.latopowers/lightweight.name": "Lightweight",
"power.terraoriginum.latopowers/lightweight.description": "You are not very heavy, so dripleaves don't tilt under your weight.",
"power.terraoriginum.latopowers/tall.name": "Tall",
"power.terraoriginum.latopowers/tall.description": "You are half a block taller.",
"death.attack.burn_in_sun": "%1$s sizzled up in the sun.",
"death.attack.burn_in_sun.player": "%1$s sizzled up in the sun whilst trying to escape %2$s.",
"death.attack.boil_in_water": "%1$s was boiled alive",
"death.attack.boil_in_water.player": "%1$s was boiled alive whilst trying to escape %2$s",
//-----Mync-----//
"origin.terraoriginum.mync.name": "Mync",
"origin.terraoriginum.mync.description": "Myncs are blind Latos. They can't teleport like regular Latos but are stronger than most Latos.",
"power.terraoriginum.myncpowers/mync_blind.name": "Mushroom Sense",
"power.terraoriginum.myncpowers/mync_blind.description": "Standing by mushrooms or mushroom related blocks allows you to connect to and feel through their roots to better perceive your surroundings.",
"power.terraoriginum.myncpowers/mync_tailwind.name": "Tailwind",
"power.terraoriginum.myncpowers/mync_tailwind.description": "You are a little bit quicker on foot than others.",
"power.terraoriginum.myncpowers/mync_rage.name": "Rage",
"power.terraoriginum.myncpowers/mync_rage.description": "Rage gives strength and speed for a short period of time.",
"power.terraoriginum.myncpowers/mync_natural_armour.name": "Thick Skin",
"power.terraoriginum.myncpowers/mync_natural_armour.description": "Even without wearing armor, your skin provides natural protection.",
"power.terraoriginum.myncpowers/mync_vision.name": "Blind",
"power.terraoriginum.myncpowers/mync_vision.description": "Myncs, being blind Latos, have to perceive their environment through sound.",
"power.terraoriginum.myncpowers/mync_echolocate.name": "Echolocation",
"power.terraoriginum.myncpowers/mync_echolocate.description": "Use your [Tab button] to make a sound to figure out how your surrounding area looks like. Nearby wool will stop this from working, but you can use a night vision potion to get it to work permanently.",
"power.terraoriginum.myncpowers/mync_strong.name": "Strong",
"power.terraoriginum.myncpowers/mync_strong.description": "You do more damage than regular people.",
//-----Immortal Human-----//
"origin.terraoriginum.immortal_human.name": "Immortal Human",
"origin.terraoriginum.immortal_human.description": "You hate life, but out of spite, the gods cursed you with being immortal. How unfortunate.",
"power.terraoriginum.immortal_humanpowers/immortal.name": "Immortal",
"power.terraoriginum.immortal_humanpowers/immortal.description": "You cannot die, no matter how hard you try.",
"power.terraoriginum.immortal_humanpowers/pathetic.name": "Pathetic",
"power.terraoriginum.immortal_humanpowers/pathetic.description": "You cannot deal damage to anything.",
//------Kefflade-----//
"origin.terraoriginum.kefflade.name": "Kefflade",
"origin.terraoriginum.kefflade.description": "A Lato, versed in magic",
"power.terraoriginum.keffladepowers/darkchromes.name": "Dark Chromes",
"power.terraoriginum.keffladepowers/darkchromes.description": "You have a resource bar that indicates how many Dark Chromes you have left, Dark Chromes are needed to use some abilities.\nYou gain Dark Chromes passively every second. Holding a book in your offhand gives you increased Dark Chromes regen.\n(Max Dark Chromes is 200)",
"power.terraoriginum.keffladepowers/bookshelfnear.name": "Book Lover",
"power.terraoriginum.keffladepowers/bookshelfnear.description": "Being near bookshelves increases your Dark Chromes per second, and also gives you bonuses.\n(Stacking up to 10 bookshelves)",
"power.terraoriginum.keffladepowers/darkfavour.name": "Magic Mastery",
"power.terraoriginum.keffladepowers/darkfavour.description": "Holding a book in your offhand gives you increased magic damage and resistance.",
"power.terraoriginum.keffladepowers/honeychromes.name": "Sweet Sweet Honey",
"power.terraoriginum.keffladepowers/honeychromes.description": "You like the taste of honey, it fills you with energy. restoring 15 Dark Chromes per bottle.",
"power.terraoriginum.keffladepowers/supernova.name": "Supernova",
"power.terraoriginum.keffladepowers/supernova.description": "(Primary + 30 Dark Chromes)You summon a rocket that explodes in the direction you're looking at.",
"power.terraoriginum.keffladepowers/nodmg.name": "Not Sharp",
"power.terraoriginum.keffladepowers/nodmg.description": "Your swords and axes don't exactly deal as much damage as you expected.",
"power.terraoriginum.keffladepowers/lightningbolt.name": "Lightning Bolt",
"power.terraoriginum.keffladepowers/lightningbolt.description": "(Primary + Sneaking + 90 Dark Chromes)You summon a lightning bolt in the direction you're looking at.",
"power.terraoriginum.keffladepowers/whitemagic.name": "White Magic",
"power.terraoriginum.keffladepowers/whitemagic.description": "(Secondary + 50 Dark Chromes): Shoot out a healing ray that heals whatever target it hits overtime. 60% of healing is given instantly and the rest is given over the next seconds. Undead get damaged instead.",
"power.terraoriginum.keffladepowers/shadowblast.name": "Shadow Blast",
"power.terraoriginum.keffladepowers/shadowblast.description": "(Secondary + Sneaking + 40 Dark Chromes): You channel the arts of shadow magic to unleash a shadow bolt in the direction you're facing. Blinding, Slowing and damaging the target.",
"power.terraoriginum.keffladepowers/darkball.name": "Ender Fireball",
"power.terraoriginum.keffladepowers/darkball.description": "(ternary - 20 Dark Chromes): You channel the magic arts of ender magic to fire an enderdragon fireball to the direction you're looking at.",
"power.terraoriginum.keffladepowers/cursedexplosions.name": "Unstable Magic",
"power.terraoriginum.keffladepowers/cursedexplosions.description": "(Ternary + Sneaking + 70 Dark Chromes): With a very long cooldown, You fire an explosive projectile to the target infront of you with a range of 20 blocks. Hitting a target marks them. After 4 seconds the chain explosions start to happen. each explosion takes a second. for a max of 2 explosions in total.",
"power.terraoriginum.keffladepowers/kefflade_natural_armour.name": "Thick Skin",
"power.terraoriginum.keffladepowers/kefflade_natural_armour.description": "Even without wearing armor, your skin provides natural protection.",
"power.terraoriginum.keffladepowers/startbox.name": "Starting Box",
"power.terraoriginum.keffladepowers/startbox.description": "You will receive some items to start your journey with.",
"power.terraoriginum.keffladepowers/leatherarmour.name": "Leather Armour",
"power.terraoriginum.keffladepowers/leatherarmour.description": "You can only wear up to leather armour",
//-----Monarch-----//
"origin.terraoriginum.monarch.name": "Monarch",
"origin.terraoriginum.monarch.description": "The Monarchs were the first of them all, they took pride in the fact that they were superior to all others of their time, that was until newer and better species came along and drove them to near extinction. \nNow they have returned after evolving into something far more powerful",
"power.terraoriginum.monarchpowers/hyperefficient_blood.name": "Hyperefficient Blood",
"power.terraoriginum.monarchpowers/hyperefficient_blood.description": "Your blood is extremely efficient, destroying any poisons within their bloodstream before they have a chance to do any damage",
"power.terraoriginum.monarchpowers/solar_energy.name": "Solar Energy",
"power.terraoriginum.monarchpowers/solar_energy.description": "You draw energy from the sun and store it within your body, and access it at will to use various abilities",
"power.terraoriginum.monarchpowers/sun_fueled.name": "Sun Fueled",
"power.terraoriginum.monarchpowers/sun_fueled.description": "You have evolved to draw power from the sun, leading you to become more powerful during the day",
"power.terraoriginum.monarchpowers/nuclear_rush.name": "Nuclear Rush",
"power.terraoriginum.monarchpowers/nuclear_rush.description": "using the sun energy stored within your body, you can temporarily start a weak thermonuclear reaction, pushing your body beyond the limitations of living flesh.",
"power.terraoriginum.monarchpowers/instant_transmission.name": "Instant Transmission",
"power.terraoriginum.monarchpowers/instant_transmission.description": "Use the thermonuclear energy stored in your body to erase the space between you and your target",
"power.terraoriginum.monarchpowers/nyctophobia.name": "Nyctophobia",
"power.terraoriginum.monarchpowers/nyctophobia.description": "Your power is derived from the sun, making you weaker during the night",
"power.terraoriginum.monarchpowers/shining.name": "Shining",
"power.terraoriginum.monarchpowers/shining.description": "An entire lifetime of absorbing the sun's energy makes you radiate it's light",
//-----Müs-----//
"origin.terraoriginum.mus.name": "Müs",
"origin.terraoriginum.mus.description": "A Lato, seen as an outcast among outcasts.",
"power.terraoriginum.mus/closeeyes.name": "Close eyes",
"power.terraoriginum.mus/closeeyes.description": "As your eyes close, you let your mind divine the world. Visions of what could be halt your reason and feed your fascination.",
"power.terraoriginum.mus/fascination.name": "Fascination",
"power.terraoriginum.mus/fascination.description": "Your inspiration, your purpose. As it grows, so too shall your strength.",
"power.terraoriginum.mus/flexibility.name": "Flexible",
"power.terraoriginum.mus/flexibility.description": "No physical restraints will hold you back. You reject the safety of heavy armour in pursuit of a greater freedom.",
"power.terraoriginum.mus/mus_natural_armor.name": "Thick Skin",
"power.terraoriginum.mus/mus_natural_armor.description": "Even without wearing armor, your skin provides natural protection.",
"power.terraoriginum.mus/no_villager.name": "Superiority",
"power.terraoriginum.mus/no_villager.description": "You cannot stand how foolish villagers are. As such, you cannot trade with them.",
"power.terraoriginum.mus/reason.name": "Reason",
"power.terraoriginum.mus/reason.description": "As it grows and you become of sound mind, your fascination drains. It grants you agency, allows you to bend your body in ways you have not thought possible.",
"power.terraoriginum.mus/lookwithin.name": "Look within",
"power.terraoriginum.mus/lookwithin.description": "You discard your reason, you find inspiration within your own mortal form. You must use a blade.",
"power.terraoriginum.mus/fascinationeffects.name": "Awareness",
"power.terraoriginum.mus/fascinationeffects.description": "As your fascination reaches a glorious epitome, all is revealed. The higher you rise the more you see."
}

View File

@@ -1,6 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "gamerorigins:item/mync_eye"
"layer0": "terraoriginum:item/mync_eye"
}
}

View File

@@ -2,8 +2,8 @@
"credit": "Made with Blockbench",
"texture_size": [128, 128],
"textures": {
"layer0": "gamerorigins:item/umbrella",
"layer1": "gamerorigins:item/umbrellaoverlay"
"layer0": "terraoriginum:item/umbrella",
"layer1": "terraoriginum:item/umbrellaoverlay"
},
"elements": [
{

View File

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 172 B

After

Width:  |  Height:  |  Size: 172 B

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

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