Merge branch 'cosmo-main' of https://github.com/BigGaemer/terra-originum into cosmo-main

This commit is contained in:
CosmoOrSth
2024-10-13 13:03:40 +05:30
17 changed files with 55 additions and 19 deletions

View File

@@ -11,6 +11,7 @@ version = project.mod_version
group = project.maven_group group = project.maven_group
repositories { repositories {
mavenLocal()
maven { maven {
name "cloth config" name "cloth config"
url "https://maven.shedaniel.me" url "https://maven.shedaniel.me"

View File

@@ -7,7 +7,7 @@ yarn_mappings=1.20.1+build.10
loader_version=0.15.6 loader_version=0.15.6
# Mod Properties # Mod Properties
mod_version=1.20.1-0.0.1-PR mod_version=1.20.1-1.0.3
maven_group=dev.arcmods maven_group=dev.arcmods
archives_base_name=TerraOriginum archives_base_name=TerraOriginum

View File

@@ -2,6 +2,7 @@ package net.arcmods.arcteam.terraoriginum;
import net.arcmods.arcteam.terraoriginum.blocks.cottonCropBlock; import net.arcmods.arcteam.terraoriginum.blocks.cottonCropBlock;
import net.arcmods.arcteam.terraoriginum.blocks.crucifix; import net.arcmods.arcteam.terraoriginum.blocks.crucifix;
import net.arcmods.arcteam.terraoriginum.items.iconItems;
import net.arcmods.arcteam.terraoriginum.items.cottonItems; import net.arcmods.arcteam.terraoriginum.items.cottonItems;
import net.arcmods.arcteam.terraoriginum.items.mync_eye; import net.arcmods.arcteam.terraoriginum.items.mync_eye;
import net.arcmods.arcteam.terraoriginum.items.sun_totem; import net.arcmods.arcteam.terraoriginum.items.sun_totem;
@@ -22,7 +23,7 @@ public class TerraOriginum implements ModInitializer {
@Override @Override
public void onInitialize() { public void onInitialize() {
umbrella.registerItems(); umbrella.registerItems();
mync_eye.register(); iconItems.register();
modEnchantments.register(); modEnchantments.register();
crucifix.register(); crucifix.register();
cottonCropBlock.register(); cottonCropBlock.register();

View File

@@ -7,12 +7,14 @@ import net.minecraft.util.Rarity;
import net.minecraft.registry.Registries; import net.minecraft.registry.Registries;
import net.minecraft.registry.Registry; import net.minecraft.registry.Registry;
public class mync_eye { public class iconItems {
public static final Item MYNC_EYE = new Item(new Item.Settings().maxCount(1).rarity(Rarity.EPIC)); public static final Item MYNC_EYE = new Item(new Item.Settings().maxCount(1).rarity(Rarity.EPIC));
public static final Item SPIRIT = new Item(new Item.Settings().maxCount(1).rarity(Rarity.EPIC));
public static void register() { public static void register() {
Registry.register(Registries.ITEM, new Identifier(TerraOriginum.MOD_ID, "mync_eye"), MYNC_EYE); Registry.register(Registries.ITEM, new Identifier(TerraOriginum.MOD_ID, "mync_eye"), MYNC_EYE);
Registry.register(Registries.ITEM, new Identifier(TerraOriginum.MOD_ID, "spirit"), SPIRIT);
} }
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

View File

@@ -1,8 +1,10 @@
{ {
//-----Icon Items-----// //-----Icon Items-----//
"item.terraoriginum.mync_eye": "you shouldnt have this", "item.terraoriginum.mync_eye": "Mync Eye",
"item.terraoriginum.spirit": "Spirit",
"item.terraoriginum.umbrella": "Umbrella", "item.terraoriginum.umbrella": "Umbrella",
//-----shit i cant be assed to categorise-----/
"item.terraoriginum.cotton_seeds": "Cotton Seeds", "item.terraoriginum.cotton_seeds": "Cotton Seeds",
"item.terraoriginum.cotton_ball": "Cotton ball", "item.terraoriginum.cotton_ball": "Cotton ball",
@@ -17,6 +19,8 @@
"death.attack.boiling": "%1$s boiled up", "death.attack.boiling": "%1$s boiled up",
"death.attack.boiling.player": "%1$s boiled up whilst trying to fight off %2$s", "death.attack.boiling.player": "%1$s boiled up whilst trying to fight off %2$s",
"enchantment.terraoriginum.sun_protection": "Sun Protection",
//-----Immortal Human-----// //-----Immortal Human-----//
"origin.terraoriginum.immortal_human.name": "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.", "origin.terraoriginum.immortal_human.description": "You hate life, but out of spite, the gods cursed you with being immortal. How unfortunate.",
@@ -180,6 +184,9 @@
"power.terraoriginum.yulde-powers/last_stand.name": "Last Stand", "power.terraoriginum.yulde-powers/last_stand.name": "Last Stand",
"power.terraoriginum.yulde-powers/last_stand.description": "You gain strength 4 and speed 2 for 60 seconds, after which you will, without fail, die.", "power.terraoriginum.yulde-powers/last_stand.description": "You gain strength 4 and speed 2 for 60 seconds, after which you will, without fail, die.",
"death.attack.terraoriginum:last_stand": "%1$s made their last stand.",
"death.attack.terraoriginum:last_stand.player": "%1$s made their last stand before dying to %2$s.",
//-----florian-----// //-----florian-----//
"origin.terraoriginum.florian.name": "Florian", "origin.terraoriginum.florian.name": "Florian",
"origin.terraoriginum.florian.description": "Florians are soft-hearted creatures of nature. They rarely pose a threat and stand as keepers of the natural environment.", "origin.terraoriginum.florian.description": "Florians are soft-hearted creatures of nature. They rarely pose a threat and stand as keepers of the natural environment.",
@@ -204,6 +211,10 @@
"power.terraoriginum.florian-powers/weak.name": "Weak", "power.terraoriginum.florian-powers/weak.name": "Weak",
"power.terraoriginum.florian-powers/weak.description": "Because you are a creature of nature, you cannot do much damage.", "power.terraoriginum.florian-powers/weak.description": "Because you are a creature of nature, you cannot do much damage.",
"death.attack.terraoriginum:last_stand": "%1$s made their last stand.",
"death.attack.terraoriginum:last_stand.player": "%1$s made their last stand before dying to %2$s.",
//-----Muckunde-----// //-----Muckunde-----//
"origin.terraoriginum.muckunde.name": "Muckunde", "origin.terraoriginum.muckunde.name": "Muckunde",
"origin.terraoriginum.muckunde.description": "A dirt creature often found borrowing underground.", "origin.terraoriginum.muckunde.description": "A dirt creature often found borrowing underground.",
@@ -240,6 +251,4 @@
"power.terraoriginum.monarchpowers/totem_fueled.name": "Totem Fueled", "power.terraoriginum.monarchpowers/totem_fueled.name": "Totem Fueled",
"power.terraoriginum.monarchpowers/totem_fueled.description": "Craft a Sun Totem and hold it to get small amounts of sun energy even outside the sun", "power.terraoriginum.monarchpowers/totem_fueled.description": "Craft a Sun Totem and hold it to get small amounts of sun energy even outside the sun",
"death.attack.terraoriginum:last_stand": "%1$s made their last stand.",
"death.attack.terraoriginum:last_stand.player": "%1$s made their last stand trying to kill %2$s."
} }

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,5 @@
{
"values": [
"terraoriginum:tick"
]
}

View File

@@ -14,6 +14,7 @@
"terraoriginum:florian", "terraoriginum:florian",
"terraoriginum:fairy", "terraoriginum:fairy",
"terraoriginum:muckunde", "terraoriginum:muckunde",
"terraoriginum:mync",
"terraoriginum:monarch", "terraoriginum:monarch",
{ {
"condition": { "condition": {

View File

@@ -11,7 +11,7 @@
"origins:elytra", "origins:elytra",
"origins:launch_into_air" "origins:launch_into_air"
], ],
"icon": "minecraft:air", "icon": "minecraft:amethyst_cluster",
"order": 1007, "order": 1007,
"impact": 3 "impact": 3
} }

View File

@@ -24,8 +24,8 @@
"terraoriginum:kitsune-powers/hungy", "terraoriginum:kitsune-powers/hungy",
"terraoriginum:kitsune-powers/fox_eyes", "terraoriginum:kitsune-powers/fox_eyes",
"terraoriginum:kitsune-powers/monch", "terraoriginum:kitsune-powers/monch",
"terraoriginum:kitsune-powers/home", "terraoriginum:kitsune-powers/yum",
"terraoriginum:kitsune-powers/yum" "terraoriginum:kitsune-powers/startbox"
], ],
"icon": "minecraft:sweet_berries", "icon": "minecraft:sweet_berries",
"order": 1006, "order": 1006,

View File

@@ -10,7 +10,7 @@
"terraoriginum:spirit-powers/undead", "terraoriginum:spirit-powers/undead",
"terraoriginum:spirit-powers/nightvis" "terraoriginum:spirit-powers/nightvis"
], ],
"icon": "minecraft:air", "icon": "terraoriginum:spirit",
"order": 1001, "order": 1001,
"impact": 3 "impact": 3
} }

View File

@@ -17,7 +17,7 @@
"terraoriginum:lato-powers/tall_width", "terraoriginum:lato-powers/tall_width",
"terraoriginum:lato-powers/tall_width_hitbox" "terraoriginum:lato-powers/tall_width_hitbox"
], ],
"icon": "netherite_axe", "icon": "creeper_head",
"order": 998, "order": 998,
"impact": 3 "impact": 3
} }

View File

@@ -1,6 +0,0 @@
{
"type": "origins:modify_player_spawn",
"dimension": "minecraft:overworld",
"biome": "minecraft:taiga",
"spawn_strategy": "default"
}

View File

@@ -0,0 +1,17 @@
{
"hidden": true,
"type": "origins:starting_equipment",
"stack": {
"item": "minecraft:book"
},
"stacks": [
{
"item": "minecraft:sweet_berries",
"amount": 32
},
{
"item": "minecraft:glow_berries",
"amount": 32
}
]
}

View File

@@ -16,7 +16,7 @@
"repo": "https://github.com/BigGaemer/terra-originum" "repo": "https://github.com/BigGaemer/terra-originum"
}, },
"license": "Custom License", "license": "Custom License",
"icon": "assets/coconut.jpg", "icon": "assets/terraoriginum.png",
"environment": "*", "environment": "*",
"entrypoints": { "entrypoints": {
"main": [ "main": [