diff --git a/build.gradle b/build.gradle index 6b1f7b0..97d322a 100644 --- a/build.gradle +++ b/build.gradle @@ -100,7 +100,7 @@ repositories { } dependencies { - minecraft "net.minecraftforge:forge:${project.forge_version}" + minecraft "net.minecraftforge:forge:${project.mc_version}-${project.forge_version}" //Dependencies implementation fg.deobf(group: 'top.theillusivec4.caelus', name: 'caelus-forge', version: "${project.caelus_version}") @@ -116,7 +116,10 @@ processResources { inputs.property "version", project.version filesMatching("META-INF/mods.toml") { - expand "version": project.version + expand 'version': project.version, + 'mc_requirements': project.mc_requirements, + 'forge_requirements': project.forge_requirements, + 'origins_requirements': project.origins_requirements } } diff --git a/gradle.properties b/gradle.properties index e503e66..90353cf 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,21 +4,24 @@ org.gradle.jvmargs=-Xmx3G org.gradle.daemon=false # Base properties - minecraft_version=1.18.2 - forge_version=1.18.2-40.0.52 + mc_version=1.18.2 + forge_version=40.1.0 mappings_channel=parchment mappings_version=2022.03.13-1.18.2 # Mod Properties - mod_version=1.1.2.1 - mod_id=origins_classes - mod_author=LimonBlaze maven_group=limonblaze.originsclasses archives_base_name=origins-classes-forge + mod_version=1.1.3 + mod_id=origins_classes + mod_author=LimonBlaze + mc_requirements=[1.18.2,1.19) + forge_requirements=[40.0.47,) + origins_requirements=[1.18.2-1.4.1,) # Dependencies caelus_version=1.18.1-3.0.0.2 - origins_version=3757460 + origins_version=3761477 # Compat Dependencies apotheosis_version=3717791 \ No newline at end of file diff --git a/src/main/java/limonblaze/originsclasses/OriginsClasses.java b/src/main/java/limonblaze/originsclasses/OriginsClasses.java index df6e213..b30e9a9 100644 --- a/src/main/java/limonblaze/originsclasses/OriginsClasses.java +++ b/src/main/java/limonblaze/originsclasses/OriginsClasses.java @@ -10,6 +10,7 @@ import net.minecraft.world.entity.EntityType; import net.minecraftforge.event.entity.EntityAttributeModificationEvent; import net.minecraftforge.eventbus.api.IEventBus; +import net.minecraftforge.fml.ModLoadingContext; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext; import org.apache.logging.log4j.LogManager; @@ -18,6 +19,7 @@ @Mod(OriginsClasses.MODID) public class OriginsClasses { public static final String MODID = "origins_classes"; + public static final String LEGACY_MODID = "origins-classes"; public static final Logger LOGGER = LogManager.getLogger(); public OriginsClasses() { @@ -32,10 +34,15 @@ public OriginsClasses() { modBus.addListener(this::attachAttributes); modBus.addListener(OriginsClassesCommon::setup); modBus.addListener(OriginsClassesClient::setup); + LOGGER.info("Origins:Classes " + ModLoadingContext.get().getActiveContainer().getModInfo().getVersion() + " has initialized. Time for work!"); } public static ResourceLocation identifier(String path) { - return new ResourceLocation(OriginsClasses.MODID, path); + return new ResourceLocation(MODID, path); + } + + public static ResourceLocation legacyIdentifier(String path) { + return new ResourceLocation(LEGACY_MODID, path); } public void attachAttributes(EntityAttributeModificationEvent event) { diff --git a/src/main/java/limonblaze/originsclasses/common/data/tag/OriginsClassesEntityTypeTags.java b/src/main/java/limonblaze/originsclasses/common/data/tag/OriginsClassesEntityTypeTags.java index c2dbfc4..b0b8809 100644 --- a/src/main/java/limonblaze/originsclasses/common/data/tag/OriginsClassesEntityTypeTags.java +++ b/src/main/java/limonblaze/originsclasses/common/data/tag/OriginsClassesEntityTypeTags.java @@ -8,7 +8,7 @@ public class OriginsClassesEntityTypeTags { - public static final TagKey> INFINITE_TRADER = tag(OriginsClasses.identifier("infinite_trader")); + public static final TagKey> INFINITE_TRADER = tag(OriginsClasses.legacyIdentifier("infinite_trader")); private static TagKey> tag(ResourceLocation id) { return TagKey.create(Registry.ENTITY_TYPE_REGISTRY, id); diff --git a/src/main/java/limonblaze/originsclasses/common/data/tag/OriginsClassesItemTags.java b/src/main/java/limonblaze/originsclasses/common/data/tag/OriginsClassesItemTags.java index 0cfa120..6ca3cd4 100644 --- a/src/main/java/limonblaze/originsclasses/common/data/tag/OriginsClassesItemTags.java +++ b/src/main/java/limonblaze/originsclasses/common/data/tag/OriginsClassesItemTags.java @@ -8,7 +8,7 @@ public class OriginsClassesItemTags { - public static final TagKey MERCHANT_BLACKLIST = tag(OriginsClasses.identifier("merchant_blacklist")); + public static final TagKey MERCHANT_BLACKLIST = tag(OriginsClasses.legacyIdentifier("merchant_blacklist")); private static TagKey tag(ResourceLocation id) { return TagKey.create(Registry.ITEM_REGISTRY, id); diff --git a/src/main/java/limonblaze/originsclasses/mixin/AbstractCauldronBlockMixin.java b/src/main/java/limonblaze/originsclasses/mixin/AbstractCauldronBlockMixin.java index 1c2908b..023536a 100644 --- a/src/main/java/limonblaze/originsclasses/mixin/AbstractCauldronBlockMixin.java +++ b/src/main/java/limonblaze/originsclasses/mixin/AbstractCauldronBlockMixin.java @@ -35,7 +35,7 @@ public class AbstractCauldronBlockMixin { ItemStack stack = player.getItemInHand(hand); if(stack.getItem() instanceof PotionItem && !PotionUtils.getPotion(stack).getEffects().isEmpty() && - NbtUtils.getOriginsClassesData(stack, NbtUtils.POTION_BONUS, NbtType.BYTE).isPresent()) { + NbtUtils.getOriginsClassesData(stack, NbtUtils.POTION_BONUS, NbtType.BYTE).isPresent()) { int bonus = IPowerContainer.getPowers(player, OriginsClassesPowers.POTION_BONUS.get()).stream() .filter(cp -> cp.isActive(player)).mapToInt(cp -> cp.getConfiguration().value()).sum(); if(bonus > 0) { diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index 1e7ad08..5631849 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -14,22 +14,22 @@ authors="LimonBlaze" description = "An add-on for the Origins mod which adds classes to the game." [[dependencies.origins_classes]] -modId = "forge" +modId = "minecraft" mandatory = true -versionRange = "[40.0.47,)" +versionRange = "${mc_requirements}" ordering = "NONE" side = "BOTH" [[dependencies.origins_classes]] -modId = "minecraft" +modId = "forge" mandatory = true -versionRange = "[1.18.2,)" +versionRange = "${forge_requirements}" ordering = "NONE" side = "BOTH" [[dependencies.origins_classes]] modId = "origins" mandatory = true -versionRange = "[1.18.2-1.4.1,)" +versionRange = "${origins_requirements}" ordering = "NONE" side = "BOTH" diff --git a/src/main/resources/assets/origins-classes/lang/en_us.json b/src/main/resources/assets/origins-classes/lang/en_us.json new file mode 100644 index 0000000..ac937f6 --- /dev/null +++ b/src/main/resources/assets/origins-classes/lang/en_us.json @@ -0,0 +1,134 @@ +{ + "layer.origins-classes.class.name": "Class", + "layer.origins-classes.class.missing_origin.name": "Missing", + "layer.origins-classes.class.missing_origin.description": "You do not have a class.", + + "attribute.origins_classes.mining_speed": "Mining Speed", + "attribute.origins_classes.projectile_strength": "Projectile Strength", + + "tooltip.origins_classes.food_bonus": "+%s Nourishment", + "tooltip.origins_classes.potion_bonus": "+%s Quality", + + "origin.origins-classes.warrior.name": "Warrior", + "origin.origins-classes.warrior.description": "These honorable fighters favor the sword and shield to take down their foes.", + + "origin.origins-classes.archer.name": "Archer", + "origin.origins-classes.archer.description": "One shot, one kill.", + + "origin.origins-classes.rogue.name": "Rogue", + "origin.origins-classes.rogue.description": "Usually known to be thieves and robbers, rogues are proficient in ambushes and stealth attacks.", + + "origin.origins-classes.beastmaster.name": "Beastmaster", + "origin.origins-classes.beastmaster.description": "Beastmasters are solitary people who prefer the company of animals.", + + "origin.origins-classes.blacksmith.name": "Blacksmith", + "origin.origins-classes.blacksmith.description": "Valued friends of anyone, Blacksmiths are able to create better tools, weapons and armor.", + + "origin.origins-classes.cleric.name": "Cleric", + "origin.origins-classes.cleric.description": "They have learned how to channel the magic present in the world and use that to their advantage.", + + "origin.origins-classes.cook.name": "Cook", + "origin.origins-classes.cook.description": "There is no one better to prepare your food than a Cook.", + + "origin.origins-classes.farmer.name": "Farmer", + "origin.origins-classes.farmer.description": "Farmers have been known to provide everyone with food for as long as anyone can remember.", + + "origin.origins-classes.merchant.name": "Merchant", + "origin.origins-classes.merchant.description": "Always looking for an additional emerald, Merchants are proficient traders.", + + "origin.origins-classes.rancher.name": "Rancher", + "origin.origins-classes.rancher.description": "Making the most of animals, Ranchers are able to gather many useful resources.", + + "origin.origins-classes.miner.name": "Miner", + "origin.origins-classes.miner.description": "Miners are the most proficient at digging up the earth's treasures.", + + "origin.origins-classes.lumberjack.name": "Lumberjack", + "origin.origins-classes.lumberjack.description": "Trees should watch out when Lumberjacks are around.", + + "origin.origins-classes.explorer.name": "Explorer", + "origin.origins-classes.explorer.description": "Explorers find their way through the most difficult terrain easily and discover hidden landmarks.", + + "origin.origins-classes.nitwit.name": "Nitwit", + "origin.origins-classes.nitwit.description": "Nitwits aren't really good at anything.", + + "power.origins-classes.less_shield_slowdown.name": "Shield Wield", + "power.origins-classes.less_shield_slowdown.description": "You are slowed down less when protecting yourself with a shield.", + + "power.origins-classes.sneaky.name": "Sneaky", + "power.origins-classes.sneaky.description": "Your nameplate is never visible through walls, even when you're not sneaking.", + + "power.origins-classes.stealth.name": "In the Shadows", + "power.origins-classes.stealth.description": "When you have been sneaking for 5 seconds, you enter Stealth.", + + "power.origins-classes.stealth_core.name": "Stealth", + "power.origins-classes.stealth_core.description": "While in stealth, you make less sound and deal extra damage when attacking an enemy from behind. You exit Stealth when you stop sneaking.", + + "power.origins-classes.less_bow_slowdown.name": "Agility", + "power.origins-classes.less_bow_slowdown.description": "You can move quicker than others while drawing your bow.", + + "power.origins-classes.no_projectile_divergence.name": "Accuracy", + "power.origins-classes.no_projectile_divergence.description": "All of your projectiles have increased accuracy.", + + "power.origins-classes.more_attack_damage.name": "Weapon Knowledge", + "power.origins-classes.more_attack_damage.description": "Able to use each weapon to its fullest potential, you deal a bit more damage.", + + "power.origins-classes.tamed_animal_boost.name": "Fauna Friends", + "power.origins-classes.tamed_animal_boost.description": "Animals you tame receive a permanent buff to their health and strength.", + + "power.origins-classes.tamed_potion_diffusal.name": "Effective Empathy", + "power.origins-classes.tamed_potion_diffusal.description": "Your nearby tamed animals also receive potion effects when you drink a potion.", + + "power.origins-classes.more_smoker_xp.name": "Smoking", + "power.origins-classes.more_smoker_xp.description": "You receive more experience from cooking food in a smoker.", + + "power.origins-classes.better_crafted_food.name": "Good Meals", + "power.origins-classes.better_crafted_food.description": "Food crafted by you is more saturating.", + + "power.origins-classes.potion_bonus.name": "Qualified Potions", + "power.origins-classes.potion_bonus.description": "As a last step in potion brewing, you may strengthen(for instant effects) or extend(for lasting effects) the potion effects with water from a cauldron.", + + "power.origins-classes.better_enchanting.name": "Enchantment Mastery", + "power.origins-classes.better_enchanting.description": "You are able achieve higher enchantment levels at an enchantment table.", + + "power.origins-classes.quality_equipment.name": "High-Quality Equipment", + "power.origins-classes.quality_equipment.description": "Equipment you create provides small buffs.", + + "power.origins-classes.efficient_repairs.name": "Efficient Repairs", + "power.origins-classes.efficient_repairs.description": "Repairing equipment in an anvil costs less material. Repairing by combining equipment restores more durability.", + + "power.origins-classes.more_crop_drops.name": "Bountiful Harvest", + "power.origins-classes.more_crop_drops.description": "When harvesting crops, there is a chance that you receive twice the yield.", + + "power.origins-classes.better_bone_meal.name": "Fertilizing Techniques", + "power.origins-classes.better_bone_meal.description": "Bone meal is twice as effective in your experienced hands when used on crops and plants.", + + "power.origins-classes.twin_breeding.name": "Twin Births", + "power.origins-classes.twin_breeding.description": "Animals bred by you have a chance to produce two babies.", + + "power.origins-classes.more_animal_loot.name": "Scavenging", + "power.origins-classes.more_animal_loot.description": "You are able to sometimes receive more material from killing animals.", + + "power.origins-classes.trade_availability.name": "Restocking", + "power.origins-classes.trade_availability.description": "Villagers you trade with never run out of resources to trade for you.", + + "power.origins-classes.rare_wandering_loot.name": "Charisma", + "power.origins-classes.rare_wandering_loot.description": "You are able to convince wandering traders to offer some of their rarer items to you.", + + "power.origins-classes.no_sprint_exhaustion.name": "Fit", + "power.origins-classes.no_sprint_exhaustion.description": "Sprinting doesn't cause you to exhaust.", + + "power.origins-classes.explorer_kit.name": "Explorer Kit", + "power.origins-classes.explorer_kit.description": "You start the game with a compass, a clock and nine empty maps.", + + "power.origins-classes.no_mining_exhaustion.name": "Experienced Excavator", + "power.origins-classes.no_mining_exhaustion.description": "Breaking blocks doesn't cause you to exhaust.", + + "power.origins-classes.more_stone_break_speed.name": "Mining Expert", + "power.origins-classes.more_stone_break_speed.description": "You mine stone material quicker than others.", + + "power.origins-classes.tree_felling.name": "Timber!", + "power.origins-classes.tree_felling.description": "You cut down whole trees at once, unless you sneak.", + + "power.origins-classes.more_planks_from_logs.name": "Woodcutting", + "power.origins-classes.more_planks_from_logs.description": "You gain two more wooden planks from a single log when crafting." +} \ No newline at end of file diff --git a/src/main/resources/assets/origins-classes/lang/pt_br.json b/src/main/resources/assets/origins-classes/lang/pt_br.json new file mode 100644 index 0000000..daffefe --- /dev/null +++ b/src/main/resources/assets/origins-classes/lang/pt_br.json @@ -0,0 +1,134 @@ +{ + "layer.origins-classes.class.name": "Classe", + "layer.origins-classes.class.missing_origin.name": "Missing", + "layer.origins-classes.class.missing_origin.description": "You do not have a class.", + + "attribute.origins_classes.mining_speed": "Mining Speed", + "attribute.origins_classes.projectile_strength": "Projectile Strength", + + "tooltip.origins_classes.food_bonus": "+%s Nutrição", + "tooltip.origins_classes.potion_bonus": "+%s Quality", + + "origin.origins-classes.warrior.name": "Guerreiro", + "origin.origins-classes.warrior.description": "Estes honrados guerreiros favorecem a espada e o escudo ao enfrentar seus inimigos.", + + "origin.origins-classes.archer.name": "Arqueiro", + "origin.origins-classes.archer.description": "Um tiro, uma morte.", + + "origin.origins-classes.rogue.name": "Gatuno", + "origin.origins-classes.rogue.description": "Comumente conhecidos como ladrões e trapaceiros, Gatunos são proficientes em emboscadas e ataques sorrateiros.", + + "origin.origins-classes.beastmaster.name": "Mestre das Feras", + "origin.origins-classes.beastmaster.description": "Mestres das Feras são pessoas solitárias que preferem a companhia de animais.", + + "origin.origins-classes.blacksmith.name": "Ferreiro", + "origin.origins-classes.blacksmith.description": "Amigos valiosos, Ferreiros são capazes de criar ferramentas, armas e armaduras melhores.", + + "origin.origins-classes.cleric.name": "Clérigo", + "origin.origins-classes.cleric.description": "Os Clérigos aprenderam a canalizr a magia presente no mundo e usa-la para sua vantagem.", + + "origin.origins-classes.cook.name": "Cozinheiro", + "origin.origins-classes.cook.description": "Ninguém cozinha melhor que o Cozinheiro.", + + "origin.origins-classes.farmer.name": "Fazendeiro", + "origin.origins-classes.farmer.description": "Fazendeiros sempre foram conhecidos como aqueles que provem todos com comida.", + + "origin.origins-classes.merchant.name": "Mercante", + "origin.origins-classes.merchant.description": "Sempre procurando por mais esmeraldas, Mercantes são comerciantes experientes.", + + "origin.origins-classes.rancher.name": "Rancheiro", + "origin.origins-classes.rancher.description": "Aproveitando ao máximo os animais, Rancheiros são capazes de coletar muitos recursos úteis.", + + "origin.origins-classes.miner.name": "Minerador", + "origin.origins-classes.miner.description": "Mineradores são os mais eficientes em cavar os tesouros da terra.", + + "origin.origins-classes.lumberjack.name": "Lenhador", + "origin.origins-classes.lumberjack.description": "Árvores deveriam se cuidar quando há um Lenhador por perto.", + + "origin.origins-classes.explorer.name": "Explorador", + "origin.origins-classes.explorer.description": "Exploradores atravessam facilmente o mais dificil dos terrenos e descobrem marcos geográficos.", + + "origin.origins-classes.nitwit.name": "Tolo", + "origin.origins-classes.nitwit.description": "Tolos não são muito bons em nada", + + "power.origins-classes.less_shield_slowdown.name": "Empunhar Escudo", + "power.origins-classes.less_shield_slowdown.description": "Você fica menos lento ao empunhar um escudo.", + + "power.origins-classes.sneaky.name": "Sorrateiro", + "power.origins-classes.sneaky.description": "Seu nome nunca estará visível através de paredes, até quando não esgueirando.", + + "power.origins-classes.stealth.name": "Nas sombras", + "power.origins-classes.stealth.description": "Após se esgueirar por 5 segundos, você entra em furtividade.", + + "power.origins-classes.stealth_core.name": "Furtividade", + "power.origins-classes.stealth_core.description": "Enquanto em modo furtivo, você faz menos som e da mais dano quando ataca alguém pelas costas. Você sai de modo furtivo ao atacar alguém ao deixar de esgueirar.", + + "power.origins-classes.less_bow_slowdown.name": "Agilidade", + "power.origins-classes.less_bow_slowdown.description": "Você se move mais rápido que os outros com um arco esticado.", + + "power.origins-classes.no_projectile_divergence.name": "Precisão", + "power.origins-classes.no_projectile_divergence.description": "Todos os seus projéteis tem precisão aumentada.", + + "power.origins-classes.more_attack_damage.name": "Conhecimento de Armas", + "power.origins-classes.more_attack_damage.description": "Capaz de usar sua arma a sua máxima eficácia, você dá um pouco a mais de dano.", + + "power.origins-classes.tamed_animal_boost.name": "Amigo da Fauna", + "power.origins-classes.tamed_animal_boost.description": "Animais que você domou recebem um bonus permanente à vida e dano.", + + "power.origins-classes.tamed_potion_diffusal.name": "Empatia Efetiva", + "power.origins-classes.tamed_potion_diffusal.description": "Animais doados por você recebem os bonus de poção bebidas por você.", + + "power.origins-classes.more_smoker_xp.name": "Churrasqueiro", + "power.origins-classes.more_smoker_xp.description": "Você recebe mais experiência o cozinhar em uma churrasqueira.", + + "power.origins-classes.better_crafted_food.name": "Boas Refeições", + "power.origins-classes.better_crafted_food.description": "Comida produzida por você é mais nutritiva.", + + "power.origins-classes.potion_bonus.name": "Poções Estendidas", + "power.origins-classes.potion_bonus.description": "Como o último passo na fermentação de uma poção, você pode dobrar a sua duração com água de um caldeirão.", + + "power.origins-classes.better_enchanting.name": "Maestria em Encantamentos", + "power.origins-classes.better_enchanting.description": "Você é capaz de produzir encantamentos melhores em uma mesa de encantamentos.", + + "power.origins-classes.quality_equipment.name": "Equipamento de Alta Qualidade", + "power.origins-classes.quality_equipment.description": "Equipmento que você cria tem pequenos bonus.", + + "power.origins-classes.efficient_repairs.name": "Reparos Eficientes", + "power.origins-classes.efficient_repairs.description": "Reparar equipamentos em uma bigorna custa menos materiais. Reparar combinando equipamentos restaura mais durabilidade.", + + "power.origins-classes.more_crop_drops.name": "Colheita Generosa", + "power.origins-classes.more_crop_drops.description": "Quando colhendo de sua plantação, há uma pequena chance de receber em dobro.", + + "power.origins-classes.better_bone_meal.name": "Tecnicas Fertilizantes", + "power.origins-classes.better_bone_meal.description": "Farinha de Osso é duas vezes mais eficáz quando em suas experientes mãos, tanto em plantações quanto em plantas.", + + "power.origins-classes.twin_breeding.name": "Partos Gêmeos", + "power.origins-classes.twin_breeding.description": "Animais cruzados por você tem chance de terem dois bebês.", + + "power.origins-classes.more_animal_loot.name": "Carniceiro", + "power.origins-classes.more_animal_loot.description": "Você é capaz de receber o dobro de materiais de animais mortos por você.", + + "power.origins-classes.trade_availability.name": "Reestoque", + "power.origins-classes.trade_availability.description": "Aldeões com quem você troca nunca ficam sem recursos.", + + "power.origins-classes.rare_wandering_loot.name": "Carisma", + "power.origins-classes.rare_wandering_loot.description": "Você é capaz de convencer mercantes viajantes a lhe oferecer bens mais raros.", + + "power.origins-classes.no_sprint_exhaustion.name": "Em Forma", + "power.origins-classes.no_sprint_exhaustion.description": "Correr não te causa exaustão.", + + "power.origins-classes.explorer_kit.name": "Kit de Explorador", + "power.origins-classes.explorer_kit.description": "Você começa o jogo com uma bussola, um relógio e 9 mapas vazios.", + + "power.origins-classes.no_mining_exhaustion.name": "Excavdor Experiente", + "power.origins-classes.no_mining_exhaustion.description": "Quebrar blocos não te deixa exusto.", + + "power.origins-classes.more_stone_break_speed.name": "Minerador Expert", + "power.origins-classes.more_stone_break_speed.description": "Você cava materiais de pedra mais rápido que outros.", + + "power.origins-classes.tree_felling.name": "Madeira!", + "power.origins-classes.tree_felling.description": "Você corta arvores inteiras de uma vez, a menos que esgueire.", + + "power.origins-classes.more_planks_from_logs.name": "Corte de Lenha", + "power.origins-classes.more_planks_from_logs.description": "Você ganha duas tábuas de madeira a mais por tronco quando criando." +} \ No newline at end of file diff --git a/src/main/resources/assets/origins_classes/lang/ru_ru.json b/src/main/resources/assets/origins-classes/lang/ru_ru.json similarity index 52% rename from src/main/resources/assets/origins_classes/lang/ru_ru.json rename to src/main/resources/assets/origins-classes/lang/ru_ru.json index f06aae7..bb9a357 100644 --- a/src/main/resources/assets/origins_classes/lang/ru_ru.json +++ b/src/main/resources/assets/origins-classes/lang/ru_ru.json @@ -1,7 +1,7 @@ { - "layer.origins_classes.class.name": "Класс", - "layer.origins_classes.class.missing_origin.name": "Отсутствует", - "layer.origins_classes.class.missing_origin.description": "У вас нет класса.", + "layer.origins-classes.class.name": "Класс", + "layer.origins-classes.class.missing_origin.name": "Отсутствует", + "layer.origins-classes.class.missing_origin.description": "У вас нет класса.", "attribute.origins_classes.mining_speed": "Mining Speed", "attribute.origins_classes.projectile_strength": "Projectile Strength", @@ -9,126 +9,126 @@ "tooltip.origins_classes.food_bonus": "+%s Сытость", "tooltip.origins_classes.potion_bonus": "+%s Quality", - "origin.origins_classes.warrior.name": "Воин", - "origin.origins_classes.warrior.description": "Эти благородные бойцы предпочитают меч и щит, чтобы побеждать своих врагов.", + "origin.origins-classes.warrior.name": "Воин", + "origin.origins-classes.warrior.description": "Эти благородные бойцы предпочитают меч и щит, чтобы побеждать своих врагов.", - "origin.origins_classes.archer.name": "Лучник", - "origin.origins_classes.archer.description": "Один выстрел, одно убийство.", + "origin.origins-classes.archer.name": "Лучник", + "origin.origins-classes.archer.description": "Один выстрел, одно убийство.", - "origin.origins_classes.rogue.name": "Разбойник", - "origin.origins_classes.rogue.description": "Обычно известные как воры и грабители. Разбойники умеют устраивать засады и атаковать скрытно.", + "origin.origins-classes.rogue.name": "Разбойник", + "origin.origins-classes.rogue.description": "Обычно известные как воры и грабители. Разбойники умеют устраивать засады и атаковать скрытно.", - "origin.origins_classes.beastmaster.name": "Охотник", - "origin.origins_classes.beastmaster.description": "Охотники - одинокие люди, предпочитающие находиться в компании животных.", + "origin.origins-classes.beastmaster.name": "Охотник", + "origin.origins-classes.beastmaster.description": "Охотники - одинокие люди, предпочитающие находиться в компании животных.", - "origin.origins_classes.blacksmith.name": "Кузнец", - "origin.origins_classes.blacksmith.description": "Кузнецы - ценные друзья для любого человека. Умеют создавать лучшие инструменты, оружие и доспехи.", + "origin.origins-classes.blacksmith.name": "Кузнец", + "origin.origins-classes.blacksmith.description": "Кузнецы - ценные друзья для любого человека. Умеют создавать лучшие инструменты, оружие и доспехи.", - "origin.origins_classes.cleric.name": "Клирик", - "origin.origins_classes.cleric.description": "Они научились управлять магией, присутствующую в мире и использовать её в своих интересах.", + "origin.origins-classes.cleric.name": "Клирик", + "origin.origins-classes.cleric.description": "Они научились управлять магией, присутствующую в мире и использовать её в своих интересах.", - "origin.origins_classes.cook.name": "Повар", - "origin.origins_classes.cook.description": "Нет того, кто лучше приготовит еду, чем повар.", + "origin.origins-classes.cook.name": "Повар", + "origin.origins-classes.cook.description": "Нет того, кто лучше приготовит еду, чем повар.", - "origin.origins_classes.farmer.name": "Фермер", - "origin.origins_classes.farmer.description": "Фермеры, как известно, обеспечивают всех едой с тех пор, сколько их помнят.", + "origin.origins-classes.farmer.name": "Фермер", + "origin.origins-classes.farmer.description": "Фермеры, как известно, обеспечивают всех едой с тех пор, сколько их помнят.", - "origin.origins_classes.merchant.name": "Торговец", - "origin.origins_classes.merchant.description": "Всегда ищут дополнительный изумруд. Торговцы - опытные купцы.", + "origin.origins-classes.merchant.name": "Торговец", + "origin.origins-classes.merchant.description": "Всегда ищут дополнительный изумруд. Торговцы - опытные купцы.", - "origin.origins_classes.rancher.name": "Скотовод", - "origin.origins_classes.rancher.description": "Используя животных по максимуму, скотоводы могут получать много полезных ресурсов.", + "origin.origins-classes.rancher.name": "Скотовод", + "origin.origins-classes.rancher.description": "Используя животных по максимуму, скотоводы могут получать много полезных ресурсов.", - "origin.origins_classes.miner.name": "Шахтёр", - "origin.origins_classes.miner.description": "Шахтеры наиболее искусны в выкапывании земных сокровищ.", + "origin.origins-classes.miner.name": "Шахтёр", + "origin.origins-classes.miner.description": "Шахтеры наиболее искусны в выкапывании земных сокровищ.", - "origin.origins_classes.lumberjack.name": "Лесоруб", - "origin.origins_classes.lumberjack.description": "Деревья должны быть начеку, когда лесорубы рядом.", + "origin.origins-classes.lumberjack.name": "Лесоруб", + "origin.origins-classes.lumberjack.description": "Деревья должны быть начеку, когда лесорубы рядом.", - "origin.origins_classes.explorer.name": "Исследователь", - "origin.origins_classes.explorer.description": "Исследователи легко преодолевают самые сложные участки местности и открывают скрытые достопримечательности.", + "origin.origins-classes.explorer.name": "Исследователь", + "origin.origins-classes.explorer.description": "Исследователи легко преодолевают самые сложные участки местности и открывают скрытые достопримечательности.", - "origin.origins_classes.nitwit.name": "Придурок", - "origin.origins_classes.nitwit.description": "Придурки ни в чем не хороши.", + "origin.origins-classes.nitwit.name": "Придурок", + "origin.origins-classes.nitwit.description": "Придурки ни в чем не хороши.", - "power.origins_classes.less_shield_slowdown.name": "Владение щитом", - "power.origins_classes.less_shield_slowdown.description": "Вы меньше замедляетесь, защищая себя щитом.", + "power.origins-classes.less_shield_slowdown.name": "Владение щитом", + "power.origins-classes.less_shield_slowdown.description": "Вы меньше замедляетесь, защищая себя щитом.", - "power.origins_classes.sneaky.name": "Подлый", - "power.origins_classes.sneaky.description": "Ваше имя никогда не видно сквозь стены, даже если вы не подкрадываетесь.", + "power.origins-classes.sneaky.name": "Подлый", + "power.origins-classes.sneaky.description": "Ваше имя никогда не видно сквозь стены, даже если вы не подкрадываетесь.", - "power.origins_classes.stealth.name": "В тени", - "power.origins_classes.stealth.description": "Когда вы подкрадываетесь более 5 секунд, вы становитесь скрытным.", + "power.origins-classes.stealth.name": "В тени", + "power.origins-classes.stealth.description": "Когда вы подкрадываетесь более 5 секунд, вы становитесь скрытным.", - "power.origins_classes.stealth_core.name": "Скрытность", - "power.origins_classes.stealth_core.description": "В скрытности, вы производите меньше звуков и наносите дополнительный урон когда атакуете врага за спиною. Вы выходите из скрытности когда вы перестаёте подкрадываться или атакуете врага.", + "power.origins-classes.stealth_core.name": "Скрытность", + "power.origins-classes.stealth_core.description": "В скрытности, вы производите меньше звуков и наносите дополнительный урон когда атакуете врага за спиною. Вы выходите из скрытности когда вы перестаёте подкрадываться или атакуете врага.", - "power.origins_classes.less_bow_slowdown.name": "Ловкость", - "power.origins_classes.less_bow_slowdown.description": "Вы движетесь быстрее, чем остальные, когда натягиваете тетиву лука.", + "power.origins-classes.less_bow_slowdown.name": "Ловкость", + "power.origins-classes.less_bow_slowdown.description": "Вы движетесь быстрее, чем остальные, когда натягиваете тетиву лука.", - "power.origins_classes.no_projectile_divergence.name": "Точность", - "power.origins_classes.no_projectile_divergence.description": "Все ваши снаряды имеют повышенную точность.", + "power.origins-classes.no_projectile_divergence.name": "Точность", + "power.origins-classes.no_projectile_divergence.description": "Все ваши снаряды имеют повышенную точность.", - "power.origins_classes.more_attack_damage.name": "Знаток оружия", - "power.origins_classes.more_attack_damage.description": "Вы можете использовать каждое оружие в полной мере, поэтому наносите немного больше урона.", + "power.origins-classes.more_attack_damage.name": "Знаток оружия", + "power.origins-classes.more_attack_damage.description": "Вы можете использовать каждое оружие в полной мере, поэтому наносите немного больше урона.", - "power.origins_classes.tamed_animal_boost.name": "Друзья фауны", - "power.origins_classes.tamed_animal_boost.description": "Прирученные тобою животные получают постоянный эффект на их здоровье и силу.", + "power.origins-classes.tamed_animal_boost.name": "Друзья фауны", + "power.origins-classes.tamed_animal_boost.description": "Прирученные тобою животные получают постоянный эффект на их здоровье и силу.", - "power.origins_classes.tamed_potion_diffusal.name": "Эффективное сочувствие", - "power.origins_classes.tamed_potion_diffusal.description": "Прирученные животные поблизости также получают эффекты зелья, когда вы пьете зелье.", + "power.origins-classes.tamed_potion_diffusal.name": "Эффективное сочувствие", + "power.origins-classes.tamed_potion_diffusal.description": "Прирученные животные поблизости также получают эффекты зелья, когда вы пьете зелье.", - "power.origins_classes.more_smoker_xp.name": "Копчение", - "power.origins_classes.more_smoker_xp.description": "Вы получаете больше опыта при готовке в коптильне.", + "power.origins-classes.more_smoker_xp.name": "Копчение", + "power.origins-classes.more_smoker_xp.description": "Вы получаете больше опыта при готовке в коптильне.", - "power.origins_classes.better_crafted_food.name": "Хорошая еда", - "power.origins_classes.better_crafted_food.description": "Приготовленная тобою еда более сытная.", + "power.origins-classes.better_crafted_food.name": "Хорошая еда", + "power.origins-classes.better_crafted_food.description": "Приготовленная тобою еда более сытная.", - "power.origins_classes.potion_bonus.name": "Продлённые зелья", - "power.origins_classes.potion_bonus.description": "В качестве последнего шага в приготовлении зелий, вы можете удвоить продолжительность действия зелий с водой из котла.", + "power.origins-classes.potion_bonus.name": "Продлённые зелья", + "power.origins-classes.potion_bonus.description": "В качестве последнего шага в приготовлении зелий, вы можете удвоить продолжительность действия зелий с водой из котла.", - "power.origins_classes.better_enchanting.name": "Мастер чар", - "power.origins_classes.better_enchanting.description": "Вы можете накладывать чары получше на чародейском столе.", + "power.origins-classes.better_enchanting.name": "Мастер чар", + "power.origins-classes.better_enchanting.description": "Вы можете накладывать чары получше на чародейском столе.", - "power.origins_classes.quality_equipment.name": "Качественное снаряжение", - "power.origins_classes.quality_equipment.description": "Созданное вами сняряжение будет иметь небольшое улучшение.", + "power.origins-classes.quality_equipment.name": "Качественное снаряжение", + "power.origins-classes.quality_equipment.description": "Созданное вами сняряжение будет иметь небольшое улучшение.", - "power.origins_classes.efficient_repairs.name": "Эффективный ремонт", - "power.origins_classes.efficient_repairs.description": "Ремонт снаряжения на наковальне требует меньших затрат материала. Ремонт, путем комбинирования снаряжения, восстанавливает больше прочности.", + "power.origins-classes.efficient_repairs.name": "Эффективный ремонт", + "power.origins-classes.efficient_repairs.description": "Ремонт снаряжения на наковальне требует меньших затрат материала. Ремонт, путем комбинирования снаряжения, восстанавливает больше прочности.", - "power.origins_classes.more_crop_drops.name": "Обильный урожай", - "power.origins_classes.more_crop_drops.description": "При сборе урожая, есть шанс получить вдвое больше урожая.", + "power.origins-classes.more_crop_drops.name": "Обильный урожай", + "power.origins-classes.more_crop_drops.description": "При сборе урожая, есть шанс получить вдвое больше урожая.", - "power.origins_classes.better_bone_meal.name": "Техники удобрения", - "power.origins_classes.better_bone_meal.description": "Костная мука вдвое эффективнее в ваших опытных руках при использовании на сельскохозяйственных культурах и растениях.", + "power.origins-classes.better_bone_meal.name": "Техники удобрения", + "power.origins-classes.better_bone_meal.description": "Костная мука вдвое эффективнее в ваших опытных руках при использовании на сельскохозяйственных культурах и растениях.", - "power.origins_classes.twin_breeding.name": "Рождение близнецов", - "power.origins_classes.twin_breeding.description": "У выведенных вами животных есть шанс произвести на свет двух детенышей.", + "power.origins-classes.twin_breeding.name": "Рождение близнецов", + "power.origins-classes.twin_breeding.description": "У выведенных вами животных есть шанс произвести на свет двух детенышей.", - "power.origins_classes.more_animal_loot.name": "Уборка мусора", - "power.origins_classes.more_animal_loot.description": "Иногда вы можете получить больше материала за убийство животных.", + "power.origins-classes.more_animal_loot.name": "Уборка мусора", + "power.origins-classes.more_animal_loot.description": "Иногда вы можете получить больше материала за убийство животных.", - "power.origins_classes.trade_availability.name": "Пополнение запасов", - "power.origins_classes.trade_availability.description": "Крестьяне, с которыми вы торгуете, никогда не исчерпают ресурсы, чтобы обменять их.", + "power.origins-classes.trade_availability.name": "Пополнение запасов", + "power.origins-classes.trade_availability.description": "Крестьяне, с которыми вы торгуете, никогда не исчерпают ресурсы, чтобы обменять их.", - "power.origins_classes.rare_wandering_loot.name": "Харизма", - "power.origins_classes.rare_wandering_loot.description": "Вы можете убедить странствующих торговцев предложить вам некоторые из их более редких предметов.", + "power.origins-classes.rare_wandering_loot.name": "Харизма", + "power.origins-classes.rare_wandering_loot.description": "Вы можете убедить странствующих торговцев предложить вам некоторые из их более редких предметов.", - "power.origins_classes.no_sprint_exhaustion.name": "В форме", - "power.origins_classes.no_sprint_exhaustion.description": "Бег не заставляет вас утомляться.", + "power.origins-classes.no_sprint_exhaustion.name": "В форме", + "power.origins-classes.no_sprint_exhaustion.description": "Бег не заставляет вас утомляться.", - "power.origins_classes.explorer_kit.name": "Комплект исследователя", - "power.origins_classes.explorer_kit.description": "Вы начинаете игру с компасом, часами и девятью пустыми картами.", + "power.origins-classes.explorer_kit.name": "Комплект исследователя", + "power.origins-classes.explorer_kit.description": "Вы начинаете игру с компасом, часами и девятью пустыми картами.", - "power.origins_classes.no_mining_exhaustion.name": "Опытный землекоп", - "power.origins_classes.no_mining_exhaustion.description": "Разрушение блоков не вызывает утомление.", + "power.origins-classes.no_mining_exhaustion.name": "Опытный землекоп", + "power.origins-classes.no_mining_exhaustion.description": "Разрушение блоков не вызывает утомление.", - "power.origins_classes.more_stone_break_speed.name": "Эксперт горного дела", - "power.origins_classes.more_stone_break_speed.description": "Вы добываете камень быстрее, чем другие.", + "power.origins-classes.more_stone_break_speed.name": "Эксперт горного дела", + "power.origins-classes.more_stone_break_speed.description": "Вы добываете камень быстрее, чем другие.", - "power.origins_classes.tree_felling.name": "Древесина!", - "power.origins_classes.tree_felling.description": "Вы рубите сразу целые деревья, если не крадетесь.", + "power.origins-classes.tree_felling.name": "Древесина!", + "power.origins-classes.tree_felling.description": "Вы рубите сразу целые деревья, если не крадетесь.", - "power.origins_classes.more_planks_from_logs.name": "Резка по дереву", - "power.origins_classes.more_planks_from_logs.description": "Вы получаете на две доски больше с одного бревна при крафте." + "power.origins-classes.more_planks_from_logs.name": "Резка по дереву", + "power.origins-classes.more_planks_from_logs.description": "Вы получаете на две доски больше с одного бревна при крафте." } \ No newline at end of file diff --git a/src/main/resources/assets/origins-classes/lang/tr_tr.json b/src/main/resources/assets/origins-classes/lang/tr_tr.json new file mode 100644 index 0000000..511daf9 --- /dev/null +++ b/src/main/resources/assets/origins-classes/lang/tr_tr.json @@ -0,0 +1,134 @@ +{ + "layer.origins-classes.class.name": "Sınıf", + "layer.origins-classes.class.missing_origin.name": "Bilinmiyor", + "layer.origins-classes.class.missing_origin.description": "Herhangi bir sınıfın yok.", + + "attribute.origins_classes.mining_speed": "Mining Speed", + "attribute.origins_classes.projectile_strength": "Projectile Strength", + + "tooltip.origins_classes.food_bonus": "+%s Besin", + "tooltip.origins_classes.potion_bonus": "+%s Quality", + + "origin.origins-classes.warrior.name": "Şavaşcı", + "origin.origins-classes.warrior.description": "Bu Şerefli Şavaşçılar düşmanlarını indirmek için kılıç ve kalkan kullanır.", + + "origin.origins-classes.archer.name": "Okçu", + "origin.origins-classes.archer.description": "Tek ok, Tek leş.", + + "origin.origins-classes.rogue.name": "Haydut", + "origin.origins-classes.rogue.description": "Haydutlar pusmakta ve gizli saldırılarda çok iyilerdir.", + + "origin.origins-classes.beastmaster.name": "Canavar Ustası", + "origin.origins-classes.beastmaster.description": "Canavar Ustaları genelde tek yaşar ve hayvanlarla iç içelerdir.", + + "origin.origins-classes.blacksmith.name": "Demir Ustası", + "origin.origins-classes.blacksmith.description": "Herkezin iyi arkadaşları Demir Ustaları daha iyi araçlar, silahlar ve zırhlar üretebilmektedirler.", + + "origin.origins-classes.cleric.name": "İksir Ustası", + "origin.origins-classes.cleric.description": "İksir Ustaları sihri nasıl kendi avantajlarına nasıl kullanacaklarını biliyorlar.", + + "origin.origins-classes.cook.name": "Aşçı", + "origin.origins-classes.cook.description": "Yemeğini sana Aşçı dan daha iyi hazırlicak kişi yok.", + + "origin.origins-classes.farmer.name": "Tarımcı", + "origin.origins-classes.farmer.description": "Çiftçiler, herkese yiyecek sağlar.", + + "origin.origins-classes.merchant.name": "Tüccar", + "origin.origins-classes.merchant.description": "Herzaman fazladan emerald için pazarlık yapar, Tüccarlar uzman Takascılardır.", + + "origin.origins-classes.rancher.name": "Çiftçi", + "origin.origins-classes.rancher.description": "Hayvanlar iyi şekilde yararlanan, Çiftçiler bir çok kullanışlı malzemeyi toplayabilmekte.", + + "origin.origins-classes.miner.name": "Madenci", + "origin.origins-classes.miner.description": "Madenciler dünyanın hazinelerini kazmakta ustalar.", + + "origin.origins-classes.lumberjack.name": "Oduncu", + "origin.origins-classes.lumberjack.description": "Ağaçlar, Oduncular yakınken dikkat etmeli.", + + "origin.origins-classes.explorer.name": "Maceracı", + "origin.origins-classes.explorer.description": "Maceracılar yollarını zor doğa şartlarına rağmen kolayca bulurlar ve gizli anıtları bulurlar.", + + "origin.origins-classes.nitwit.name": "Beyinsiz", + "origin.origins-classes.nitwit.description": "Bu Mallar hiç birşeyde iyi değil.", + + "power.origins-classes.less_shield_slowdown.name": "Kalkan Uzmanı", + "power.origins-classes.less_shield_slowdown.description": "Kalkanını kullanıyorken daha az yavaşlarsın.", + + "power.origins-classes.sneaky.name": "Sinsi", + "power.origins-classes.sneaky.description": "İsmin duvarların ardından gözükmez, eğilmiyorken bile.", + + "power.origins-classes.stealth.name": "Gölgelerin İçinde", + "power.origins-classes.stealth.description": "5 Saniy boyunca eğilirsin Gizlilik moduna geçersin.", + + "power.origins-classes.stealth_core.name": "Gizlilik", + "power.origins-classes.stealth_core.description": "Gizlilik modunda iken, düşmana arkadan saldırdığında daha fazla vurur ve daha az gürültü yaparsın. Eğilmeyi bıraktığında yada bir düşmana vurduğunda gizlilik modundan çıkarsın.", + + "power.origins-classes.less_bow_slowdown.name": "Kıvrak", + "power.origins-classes.less_bow_slowdown.description": "Yayını çekerken daha hızlı hareket edebilirsin.", + + "power.origins-classes.no_projectile_divergence.name": "İsabet", + "power.origins-classes.no_projectile_divergence.description": "Fırlattığın tüm şeylerin İsabetliliği daha fazla.", + + "power.origins-classes.more_attack_damage.name": "Silah Bilgisi", + "power.origins-classes.more_attack_damage.description": "Her silahi tam potensiyallerinde kullanır, biraz daha hasar verir.", + + "power.origins-classes.tamed_animal_boost.name": "Hayvan Arkadaşlar", + "power.origins-classes.tamed_animal_boost.description": "Senin evcilleştirdiğin hayvanlar daha güçlü ve dayanıklıdır.", + + "power.origins-classes.tamed_potion_diffusal.name": "Empati", + "power.origins-classes.tamed_potion_diffusal.description": "İksir etkisinde olduğunda etkisi yakındaki evcil hayvanlarıda etkiler.", + + "power.origins-classes.more_smoker_xp.name": "Duman Fırını Ustası", + "power.origins-classes.more_smoker_xp.description": "Duman Fırınında yemek pişirmekten daha fazla tecrübe puanı alırsın.", + + "power.origins-classes.better_crafted_food.name": "Doyurucu Öğünler", + "power.origins-classes.better_crafted_food.description": "Senin tarafından yapılan yemekler daha fazla doyurur.", + + "power.origins-classes.potion_bonus.name": "Uzatılmış İksirler", + "power.origins-classes.potion_bonus.description": "İksir yapımında son aşama olarak, bi iksirin süresini su dolu bir kazana sağ tıklayarak ikiye katlayabilirsin.", + + "power.origins-classes.better_enchanting.name": "Büyü Ustsı", + "power.origins-classes.better_enchanting.description": "Büyü Masasında daha iyi büyüler çıkarabilirsin.", + + "power.origins-classes.quality_equipment.name": "Kaliteli Araç-Gereç", + "power.origins-classes.quality_equipment.description": "Senin ürettiğin araçlar küçük artıları vardır.", + + "power.origins-classes.efficient_repairs.name": "Verimli Tamirler", + "power.origins-classes.efficient_repairs.description": "Anvilde eşya tamir etmek daha az malzeme gerektirir. Ve daha verimli eşya birleştirsin.", + + "power.origins-classes.more_crop_drops.name": "Verimli Hasat", + "power.origins-classes.more_crop_drops.description": "Mahsul hasat ederken bi şanşla iki katı malzeme alırsın.", + + "power.origins-classes.better_bone_meal.name": "Verimli Kemik Tozu", + "power.origins-classes.better_bone_meal.description": "Tecrübeli ellerinde kemik tozu iki katı daha etkili.", + + "power.origins-classes.twin_breeding.name": "İkizler", + "power.origins-classes.twin_breeding.description": "Doğurttuğun hayvanlar bi şanşla ikiz olur.", + + "power.origins-classes.more_animal_loot.name": "Verimli Eller", + "power.origins-classes.more_animal_loot.description": "Bazen hayvanlardan daha fazla malzeme düşürürsün.", + + "power.origins-classes.trade_availability.name": "Hızlı Stoklama", + "power.origins-classes.trade_availability.description": "Takas yaptığın köylülerün stokları bitmez.", + + "power.origins-classes.rare_wandering_loot.name": "Karizma", + "power.origins-classes.rare_wandering_loot.description": "Gezgin Tüccarları sana daha kaliteli eşylaranı göstermeye ikna edebilirsin.", + + "power.origins-classes.no_sprint_exhaustion.name": "Fit", + "power.origins-classes.no_sprint_exhaustion.description": "Koşmak seni yormaz.", + + "power.origins-classes.explorer_kit.name": "Maceracı Kiti", + "power.origins-classes.explorer_kit.description": "Oyunu bir pusula, bir saat ve dokuz boş harita ile başlarsın.", + + "power.origins-classes.no_mining_exhaustion.name": "Tecrübeli Madenci", + "power.origins-classes.no_mining_exhaustion.description": "Blok Kırmak Seni Yormaz.", + + "power.origins-classes.more_stone_break_speed.name": "Uzman Madenci", + "power.origins-classes.more_stone_break_speed.description": "Taşları daha hızlı kırarsın.", + + "power.origins-classes.tree_felling.name": "Timber!", + "power.origins-classes.tree_felling.description": "Eğilmediğin sürece koca ağaçları tekte kessebilirsin.", + + "power.origins-classes.more_planks_from_logs.name": "Verimli Üretim", + "power.origins-classes.more_planks_from_logs.description": "1 kütükten 6 tahta alırsın." +} \ No newline at end of file diff --git a/src/main/resources/assets/origins-classes/lang/zh_cn.json b/src/main/resources/assets/origins-classes/lang/zh_cn.json new file mode 100644 index 0000000..9d3ae17 --- /dev/null +++ b/src/main/resources/assets/origins-classes/lang/zh_cn.json @@ -0,0 +1,133 @@ + +{ + "layer.origins-classes.class.name": "职业", + + "tooltip.origins_classes.food_bonus": "+%s 营养", + "tooltip.origins_classes.potion_bonus": "+%s 效力", + + "attribute.origins_classes.mining_speed": "挖掘速度", + "attribute.origins_classes.projectile_strength": "弹射物强度", + + "origin.origins-classes.warrior.name": "战士", + "origin.origins-classes.warrior.description": "可敬的战士们更乐意以剑与盾的对决与对手一决胜负。", + + "origin.origins-classes.archer.name": "弓手", + "origin.origins-classes.archer.description": "一发入魂。", + + "origin.origins-classes.rogue.name": "侠盗", + "origin.origins-classes.rogue.description": "以小偷和强盗的身份广为人知,侠盗擅长埋伏与偷袭。", + + "origin.origins-classes.beastmaster.name": "驯兽师", + "origin.origins-classes.beastmaster.description": "天性孤独的驯兽师们更愿意与动物们作伴。", + + "origin.origins-classes.blacksmith.name": "铁匠", + "origin.origins-classes.blacksmith.description": "铁匠师傅谁不爱呢?铁匠铸就的武器,工具和盔甲毕竟一流。", + + "origin.origins-classes.cleric.name": "牧师", + "origin.origins-classes.cleric.description": "牧师明白怎么将世界的魔法融会贯通并为己所用。", + + "origin.origins-classes.cook.name": "厨师", + "origin.origins-classes.cook.description": "还有谁更懂厨艺呢?", + + "origin.origins-classes.farmer.name": "农民", + "origin.origins-classes.farmer.description": "常为大家带来温饱——抽点时间惦记一下他们吧。", + + "origin.origins-classes.merchant.name": "商人", + "origin.origins-classes.merchant.description": "哪怕一颗绿宝石也不会放过!——商人们可是贸易的行家。", + + "origin.origins-classes.rancher.name": "牧民", + "origin.origins-classes.rancher.description": "牧民们更擅长撷取动物资源。", + + "origin.origins-classes.miner.name": "矿工", + "origin.origins-classes.miner.description": "矿工们精于采集大地的矿藏。", + + "origin.origins-classes.lumberjack.name": "伐木工", + "origin.origins-classes.lumberjack.description": "伐木工出没的时候,就是树木要小心的时候。", + + "origin.origins-classes.explorer.name": "探险家", + "origin.origins-classes.explorer.description": "探险家们在险境中之穿梭可谓得心应手,擅长发现隐藏的地点。", + + "origin.origins-classes.nitwit.name": "无用之人", + "origin.origins-classes.nitwit.description": "平庸的同义词。", + + "power.origins-classes.less_shield_slowdown.name": "持盾有术", + "power.origins-classes.less_shield_slowdown.description": "使用盾牌防御自己时的减速惩罚更少。", + + "power.origins-classes.sneaky.name": "悄声", + "power.origins-classes.sneaky.description": "你的名字标签不会在墙的后面显示,哪怕不潜行也是。", + + "power.origins-classes.stealth.name": "隐匿", + "power.origins-classes.stealth.description": "按住潜行按键5秒后会进入匿踪模式。", + + "power.origins-classes.stealth_core.name": "匿踪模式", + "power.origins-classes.stealth_core.description": "进入匿踪模式以后,发出声响减少,且背后偷袭造成伤害更高。松开潜行键将解除匿踪模式。", + + "power.origins-classes.less_bow_slowdown.name": "迅捷", + "power.origins-classes.less_bow_slowdown.description": "你拉弓时的移动速度相比他人更快。", + + "power.origins-classes.no_projectile_divergence.name": "精准", + "power.origins-classes.no_projectile_divergence.description": "你所发射的所有弹射物都更精准。", + + "power.origins-classes.more_attack_damage.name": "武器学者", + "power.origins-classes.more_attack_damage.description": "能够发挥各种武器的最大效能,因此你攻击的伤害会更多一点。", + + "power.origins-classes.tamed_animal_boost.name": "动物朋友", + "power.origins-classes.tamed_animal_boost.description": "你驯养的动物会获得永久的生命值和力量加成。", + + "power.origins-classes.tamed_potion_diffusal.name": "共感", + "power.origins-classes.tamed_potion_diffusal.description": "你驯养的动物在你身边的时候,会同你一起接收饮用获得的药效。", + + "power.origins-classes.more_smoker_xp.name": "熏制能手", + "power.origins-classes.more_smoker_xp.description": "使用烟熏炉烤制食品时获得的经验更多。", + + "power.origins-classes.better_crafted_food.name": "优质食品", + "power.origins-classes.better_crafted_food.description": "你制作的食品所回复的饥饿值和饱和度更多。", + + "power.origins-classes.potion_bonus.name": "精制药水", + "power.origins-classes.potion_bonus.description": "使用炼药锅中的水作为炼药的最后一道工序以加强(对于瞬间效果)或加长(对于持续效果)药效。", + + "power.origins-classes.better_enchanting.name": "附魔大师", + "power.origins-classes.better_enchanting.description": "你能在附魔台获得更高的附魔等级。", + + "power.origins-classes.quality_equipment.name": "优质装备", + "power.origins-classes.quality_equipment.description": "你制作的装备额外提供一点点加成。", + + "power.origins-classes.efficient_repairs.name": "高效修理", + "power.origins-classes.efficient_repairs.description": "铁砧修理装备所花费的材料更少;通过合成修理装备恢复的耐久更多。", + + "power.origins-classes.more_crop_drops.name": "今年收成好啊——", + "power.origins-classes.more_crop_drops.description": "收获农作物时有几率收成加倍。", + + "power.origins-classes.better_bone_meal.name": "施肥有方", + "power.origins-classes.better_bone_meal.description": "骨粉在你熟练的手中对农作物与植物的效果加倍。", + + "power.origins-classes.twin_breeding.name": "双喜临门", + "power.origins-classes.twin_breeding.description": "你喂养繁殖的动物有几率生下双胞胎。", + + "power.origins-classes.more_animal_loot.name": "搜刮能手", + "power.origins-classes.more_animal_loot.description": "你杀死的动物偶尔产出更多掉落。", + + "power.origins-classes.trade_availability.name": "补货", + "power.origins-classes.trade_availability.description": "村民与你交易永远不会断货。", + + "power.origins-classes.rare_wandering_loot.name": "魅力十足", + "power.origins-classes.rare_wandering_loot.description": "你可以说服流浪商人出售一些更稀有的货物。", + + "power.origins-classes.no_sprint_exhaustion.name": "强身健体", + "power.origins-classes.no_sprint_exhaustion.description": "疾跑不会让你感到疲惫。", + + "power.origins-classes.explorer_kit.name": "探险装备", + "power.origins-classes.explorer_kit.description": "游戏开始时你会获得1个指南针、1个钟和9张空地图。", + + "power.origins-classes.no_mining_exhaustion.name": "采石有技巧", + "power.origins-classes.no_mining_exhaustion.description": "采掘方块不会让你感到疲惫。", + + "power.origins-classes.more_stone_break_speed.name": "挖矿有秘方", + "power.origins-classes.more_stone_break_speed.description": "你开采矿石的速度相比他人更快。", + + "power.origins-classes.tree_felling.name": "你给我倒下来——!", + "power.origins-classes.tree_felling.description": "你可以立刻砍下整棵树木,除非你潜行。", + + "power.origins-classes.more_planks_from_logs.name": "木工", + "power.origins-classes.more_planks_from_logs.description": "合成木板的时候你会多获得两个木板。" +} diff --git a/src/main/resources/assets/origins_classes/lang/en_us.json b/src/main/resources/assets/origins_classes/lang/en_us.json deleted file mode 100644 index 11559d2..0000000 --- a/src/main/resources/assets/origins_classes/lang/en_us.json +++ /dev/null @@ -1,134 +0,0 @@ -{ - "layer.origins_classes.class.name": "Class", - "layer.origins_classes.class.missing_origin.name": "Missing", - "layer.origins_classes.class.missing_origin.description": "You do not have a class.", - - "attribute.origins_classes.mining_speed": "Mining Speed", - "attribute.origins_classes.projectile_strength": "Projectile Strength", - - "tooltip.origins_classes.food_bonus": "+%s Nourishment", - "tooltip.origins_classes.potion_bonus": "+%s Quality", - - "origin.origins_classes.warrior.name": "Warrior", - "origin.origins_classes.warrior.description": "These honorable fighters favor the sword and shield to take down their foes.", - - "origin.origins_classes.archer.name": "Archer", - "origin.origins_classes.archer.description": "One shot, one kill.", - - "origin.origins_classes.rogue.name": "Rogue", - "origin.origins_classes.rogue.description": "Usually known to be thieves and robbers, rogues are proficient in ambushes and stealth attacks.", - - "origin.origins_classes.beastmaster.name": "Beastmaster", - "origin.origins_classes.beastmaster.description": "Beastmasters are solitary people who prefer the company of animals.", - - "origin.origins_classes.blacksmith.name": "Blacksmith", - "origin.origins_classes.blacksmith.description": "Valued friends of anyone, Blacksmiths are able to create better tools, weapons and armor.", - - "origin.origins_classes.cleric.name": "Cleric", - "origin.origins_classes.cleric.description": "They have learned how to channel the magic present in the world and use that to their advantage.", - - "origin.origins_classes.cook.name": "Cook", - "origin.origins_classes.cook.description": "There is no one better to prepare your food than a Cook.", - - "origin.origins_classes.farmer.name": "Farmer", - "origin.origins_classes.farmer.description": "Farmers have been known to provide everyone with food for as long as anyone can remember.", - - "origin.origins_classes.merchant.name": "Merchant", - "origin.origins_classes.merchant.description": "Always looking for an additional emerald, Merchants are proficient traders.", - - "origin.origins_classes.rancher.name": "Rancher", - "origin.origins_classes.rancher.description": "Making the most of animals, Ranchers are able to gather many useful resources.", - - "origin.origins_classes.miner.name": "Miner", - "origin.origins_classes.miner.description": "Miners are the most proficient at digging up the earth's treasures.", - - "origin.origins_classes.lumberjack.name": "Lumberjack", - "origin.origins_classes.lumberjack.description": "Trees should watch out when Lumberjacks are around.", - - "origin.origins_classes.explorer.name": "Explorer", - "origin.origins_classes.explorer.description": "Explorers find their way through the most difficult terrain easily and discover hidden landmarks.", - - "origin.origins_classes.nitwit.name": "Nitwit", - "origin.origins_classes.nitwit.description": "Nitwits aren't really good at anything.", - - "power.origins_classes.less_shield_slowdown.name": "Shield Wield", - "power.origins_classes.less_shield_slowdown.description": "You are slowed down less when protecting yourself with a shield.", - - "power.origins_classes.sneaky.name": "Sneaky", - "power.origins_classes.sneaky.description": "Your nameplate is never visible through walls, even when you're not sneaking.", - - "power.origins_classes.stealth.name": "In the Shadows", - "power.origins_classes.stealth.description": "When you have been sneaking for 5 seconds, you enter Stealth.", - - "power.origins_classes.stealth_core.name": "Stealth", - "power.origins_classes.stealth_core.description": "While in stealth, you make less sound and deal extra damage when attacking an enemy from behind. You exit Stealth when you stop sneaking.", - - "power.origins_classes.less_bow_slowdown.name": "Agility", - "power.origins_classes.less_bow_slowdown.description": "You can move quicker than others while drawing your bow.", - - "power.origins_classes.no_projectile_divergence.name": "Accuracy", - "power.origins_classes.no_projectile_divergence.description": "All of your projectiles have increased accuracy.", - - "power.origins_classes.more_attack_damage.name": "Weapon Knowledge", - "power.origins_classes.more_attack_damage.description": "Able to use each weapon to its fullest potential, you deal a bit more damage.", - - "power.origins_classes.tamed_animal_boost.name": "Fauna Friends", - "power.origins_classes.tamed_animal_boost.description": "Animals you tame receive a permanent buff to their health and strength.", - - "power.origins_classes.tamed_potion_diffusal.name": "Effective Empathy", - "power.origins_classes.tamed_potion_diffusal.description": "Your nearby tamed animals also receive potion effects when you drink a potion.", - - "power.origins_classes.more_smoker_xp.name": "Smoking", - "power.origins_classes.more_smoker_xp.description": "You receive more experience from cooking food in a smoker.", - - "power.origins_classes.better_crafted_food.name": "Good Meals", - "power.origins_classes.better_crafted_food.description": "Food crafted by you is more saturating.", - - "power.origins_classes.potion_bonus.name": "Qualified Potions", - "power.origins_classes.potion_bonus.description": "As a last step in potion brewing, you may strengthen(for instant effects) or extend(for lasting effects) the potion effects with water from a cauldron.", - - "power.origins_classes.better_enchanting.name": "Enchantment Mastery", - "power.origins_classes.better_enchanting.description": "You are able achieve higher enchantment levels at an enchantment table.", - - "power.origins_classes.quality_equipment.name": "High-Quality Equipment", - "power.origins_classes.quality_equipment.description": "Equipment you create provides small buffs.", - - "power.origins_classes.efficient_repairs.name": "Efficient Repairs", - "power.origins_classes.efficient_repairs.description": "Repairing equipment in an anvil costs less material. Repairing by combining equipment restores more durability.", - - "power.origins_classes.more_crop_drops.name": "Bountiful Harvest", - "power.origins_classes.more_crop_drops.description": "When harvesting crops, there is a chance that you receive twice the yield.", - - "power.origins_classes.better_bone_meal.name": "Fertilizing Techniques", - "power.origins_classes.better_bone_meal.description": "Bone meal is twice as effective in your experienced hands when used on crops and plants.", - - "power.origins_classes.twin_breeding.name": "Twin Births", - "power.origins_classes.twin_breeding.description": "Animals bred by you have a chance to produce two babies.", - - "power.origins_classes.more_animal_loot.name": "Scavenging", - "power.origins_classes.more_animal_loot.description": "You are able to sometimes receive more material from killing animals.", - - "power.origins_classes.trade_availability.name": "Restocking", - "power.origins_classes.trade_availability.description": "Villagers you trade with never run out of resources to trade for you.", - - "power.origins_classes.rare_wandering_loot.name": "Charisma", - "power.origins_classes.rare_wandering_loot.description": "You are able to convince wandering traders to offer some of their rarer items to you.", - - "power.origins_classes.no_sprint_exhaustion.name": "Fit", - "power.origins_classes.no_sprint_exhaustion.description": "Sprinting doesn't cause you to exhaust.", - - "power.origins_classes.explorer_kit.name": "Explorer Kit", - "power.origins_classes.explorer_kit.description": "You start the game with a compass, a clock and nine empty maps.", - - "power.origins_classes.no_mining_exhaustion.name": "Experienced Excavator", - "power.origins_classes.no_mining_exhaustion.description": "Breaking blocks doesn't cause you to exhaust.", - - "power.origins_classes.more_stone_break_speed.name": "Mining Expert", - "power.origins_classes.more_stone_break_speed.description": "You mine stone material quicker than others.", - - "power.origins_classes.tree_felling.name": "Timber!", - "power.origins_classes.tree_felling.description": "You cut down whole trees at once, unless you sneak.", - - "power.origins_classes.more_planks_from_logs.name": "Woodcutting", - "power.origins_classes.more_planks_from_logs.description": "You gain two more wooden planks from a single log when crafting." -} \ No newline at end of file diff --git a/src/main/resources/assets/origins_classes/lang/pt_br.json b/src/main/resources/assets/origins_classes/lang/pt_br.json deleted file mode 100644 index 3705291..0000000 --- a/src/main/resources/assets/origins_classes/lang/pt_br.json +++ /dev/null @@ -1,134 +0,0 @@ -{ - "layer.origins_classes.class.name": "Classe", - "layer.origins_classes.class.missing_origin.name": "Missing", - "layer.origins_classes.class.missing_origin.description": "You do not have a class.", - - "attribute.origins_classes.mining_speed": "Mining Speed", - "attribute.origins_classes.projectile_strength": "Projectile Strength", - - "tooltip.origins_classes.food_bonus": "+%s Nutrição", - "tooltip.origins_classes.potion_bonus": "+%s Quality", - - "origin.origins_classes.warrior.name": "Guerreiro", - "origin.origins_classes.warrior.description": "Estes honrados guerreiros favorecem a espada e o escudo ao enfrentar seus inimigos.", - - "origin.origins_classes.archer.name": "Arqueiro", - "origin.origins_classes.archer.description": "Um tiro, uma morte.", - - "origin.origins_classes.rogue.name": "Gatuno", - "origin.origins_classes.rogue.description": "Comumente conhecidos como ladrões e trapaceiros, Gatunos são proficientes em emboscadas e ataques sorrateiros.", - - "origin.origins_classes.beastmaster.name": "Mestre das Feras", - "origin.origins_classes.beastmaster.description": "Mestres das Feras são pessoas solitárias que preferem a companhia de animais.", - - "origin.origins_classes.blacksmith.name": "Ferreiro", - "origin.origins_classes.blacksmith.description": "Amigos valiosos, Ferreiros são capazes de criar ferramentas, armas e armaduras melhores.", - - "origin.origins_classes.cleric.name": "Clérigo", - "origin.origins_classes.cleric.description": "Os Clérigos aprenderam a canalizr a magia presente no mundo e usa-la para sua vantagem.", - - "origin.origins_classes.cook.name": "Cozinheiro", - "origin.origins_classes.cook.description": "Ninguém cozinha melhor que o Cozinheiro.", - - "origin.origins_classes.farmer.name": "Fazendeiro", - "origin.origins_classes.farmer.description": "Fazendeiros sempre foram conhecidos como aqueles que provem todos com comida.", - - "origin.origins_classes.merchant.name": "Mercante", - "origin.origins_classes.merchant.description": "Sempre procurando por mais esmeraldas, Mercantes são comerciantes experientes.", - - "origin.origins_classes.rancher.name": "Rancheiro", - "origin.origins_classes.rancher.description": "Aproveitando ao máximo os animais, Rancheiros são capazes de coletar muitos recursos úteis.", - - "origin.origins_classes.miner.name": "Minerador", - "origin.origins_classes.miner.description": "Mineradores são os mais eficientes em cavar os tesouros da terra.", - - "origin.origins_classes.lumberjack.name": "Lenhador", - "origin.origins_classes.lumberjack.description": "Árvores deveriam se cuidar quando há um Lenhador por perto.", - - "origin.origins_classes.explorer.name": "Explorador", - "origin.origins_classes.explorer.description": "Exploradores atravessam facilmente o mais dificil dos terrenos e descobrem marcos geográficos.", - - "origin.origins_classes.nitwit.name": "Tolo", - "origin.origins_classes.nitwit.description": "Tolos não são muito bons em nada", - - "power.origins_classes.less_shield_slowdown.name": "Empunhar Escudo", - "power.origins_classes.less_shield_slowdown.description": "Você fica menos lento ao empunhar um escudo.", - - "power.origins_classes.sneaky.name": "Sorrateiro", - "power.origins_classes.sneaky.description": "Seu nome nunca estará visível através de paredes, até quando não esgueirando.", - - "power.origins_classes.stealth.name": "Nas sombras", - "power.origins_classes.stealth.description": "Após se esgueirar por 5 segundos, você entra em furtividade.", - - "power.origins_classes.stealth_core.name": "Furtividade", - "power.origins_classes.stealth_core.description": "Enquanto em modo furtivo, você faz menos som e da mais dano quando ataca alguém pelas costas. Você sai de modo furtivo ao atacar alguém ao deixar de esgueirar.", - - "power.origins_classes.less_bow_slowdown.name": "Agilidade", - "power.origins_classes.less_bow_slowdown.description": "Você se move mais rápido que os outros com um arco esticado.", - - "power.origins_classes.no_projectile_divergence.name": "Precisão", - "power.origins_classes.no_projectile_divergence.description": "Todos os seus projéteis tem precisão aumentada.", - - "power.origins_classes.more_attack_damage.name": "Conhecimento de Armas", - "power.origins_classes.more_attack_damage.description": "Capaz de usar sua arma a sua máxima eficácia, você dá um pouco a mais de dano.", - - "power.origins_classes.tamed_animal_boost.name": "Amigo da Fauna", - "power.origins_classes.tamed_animal_boost.description": "Animais que você domou recebem um bonus permanente à vida e dano.", - - "power.origins_classes.tamed_potion_diffusal.name": "Empatia Efetiva", - "power.origins_classes.tamed_potion_diffusal.description": "Animais doados por você recebem os bonus de poção bebidas por você.", - - "power.origins_classes.more_smoker_xp.name": "Churrasqueiro", - "power.origins_classes.more_smoker_xp.description": "Você recebe mais experiência o cozinhar em uma churrasqueira.", - - "power.origins_classes.better_crafted_food.name": "Boas Refeições", - "power.origins_classes.better_crafted_food.description": "Comida produzida por você é mais nutritiva.", - - "power.origins_classes.potion_bonus.name": "Poções Estendidas", - "power.origins_classes.potion_bonus.description": "Como o último passo na fermentação de uma poção, você pode dobrar a sua duração com água de um caldeirão.", - - "power.origins_classes.better_enchanting.name": "Maestria em Encantamentos", - "power.origins_classes.better_enchanting.description": "Você é capaz de produzir encantamentos melhores em uma mesa de encantamentos.", - - "power.origins_classes.quality_equipment.name": "Equipamento de Alta Qualidade", - "power.origins_classes.quality_equipment.description": "Equipmento que você cria tem pequenos bonus.", - - "power.origins_classes.efficient_repairs.name": "Reparos Eficientes", - "power.origins_classes.efficient_repairs.description": "Reparar equipamentos em uma bigorna custa menos materiais. Reparar combinando equipamentos restaura mais durabilidade.", - - "power.origins_classes.more_crop_drops.name": "Colheita Generosa", - "power.origins_classes.more_crop_drops.description": "Quando colhendo de sua plantação, há uma pequena chance de receber em dobro.", - - "power.origins_classes.better_bone_meal.name": "Tecnicas Fertilizantes", - "power.origins_classes.better_bone_meal.description": "Farinha de Osso é duas vezes mais eficáz quando em suas experientes mãos, tanto em plantações quanto em plantas.", - - "power.origins_classes.twin_breeding.name": "Partos Gêmeos", - "power.origins_classes.twin_breeding.description": "Animais cruzados por você tem chance de terem dois bebês.", - - "power.origins_classes.more_animal_loot.name": "Carniceiro", - "power.origins_classes.more_animal_loot.description": "Você é capaz de receber o dobro de materiais de animais mortos por você.", - - "power.origins_classes.trade_availability.name": "Reestoque", - "power.origins_classes.trade_availability.description": "Aldeões com quem você troca nunca ficam sem recursos.", - - "power.origins_classes.rare_wandering_loot.name": "Carisma", - "power.origins_classes.rare_wandering_loot.description": "Você é capaz de convencer mercantes viajantes a lhe oferecer bens mais raros.", - - "power.origins_classes.no_sprint_exhaustion.name": "Em Forma", - "power.origins_classes.no_sprint_exhaustion.description": "Correr não te causa exaustão.", - - "power.origins_classes.explorer_kit.name": "Kit de Explorador", - "power.origins_classes.explorer_kit.description": "Você começa o jogo com uma bussola, um relógio e 9 mapas vazios.", - - "power.origins_classes.no_mining_exhaustion.name": "Excavdor Experiente", - "power.origins_classes.no_mining_exhaustion.description": "Quebrar blocos não te deixa exusto.", - - "power.origins_classes.more_stone_break_speed.name": "Minerador Expert", - "power.origins_classes.more_stone_break_speed.description": "Você cava materiais de pedra mais rápido que outros.", - - "power.origins_classes.tree_felling.name": "Madeira!", - "power.origins_classes.tree_felling.description": "Você corta arvores inteiras de uma vez, a menos que esgueire.", - - "power.origins_classes.more_planks_from_logs.name": "Corte de Lenha", - "power.origins_classes.more_planks_from_logs.description": "Você ganha duas tábuas de madeira a mais por tronco quando criando." -} \ No newline at end of file diff --git a/src/main/resources/assets/origins_classes/lang/tr_tr.json b/src/main/resources/assets/origins_classes/lang/tr_tr.json deleted file mode 100644 index b2de16d..0000000 --- a/src/main/resources/assets/origins_classes/lang/tr_tr.json +++ /dev/null @@ -1,134 +0,0 @@ -{ - "layer.origins_classes.class.name": "Sınıf", - "layer.origins_classes.class.missing_origin.name": "Bilinmiyor", - "layer.origins_classes.class.missing_origin.description": "Herhangi bir sınıfın yok.", - - "attribute.origins_classes.mining_speed": "Mining Speed", - "attribute.origins_classes.projectile_strength": "Projectile Strength", - - "tooltip.origins_classes.food_bonus": "+%s Besin", - "tooltip.origins_classes.potion_bonus": "+%s Quality", - - "origin.origins_classes.warrior.name": "Şavaşcı", - "origin.origins_classes.warrior.description": "Bu Şerefli Şavaşçılar düşmanlarını indirmek için kılıç ve kalkan kullanır.", - - "origin.origins_classes.archer.name": "Okçu", - "origin.origins_classes.archer.description": "Tek ok, Tek leş.", - - "origin.origins_classes.rogue.name": "Haydut", - "origin.origins_classes.rogue.description": "Haydutlar pusmakta ve gizli saldırılarda çok iyilerdir.", - - "origin.origins_classes.beastmaster.name": "Canavar Ustası", - "origin.origins_classes.beastmaster.description": "Canavar Ustaları genelde tek yaşar ve hayvanlarla iç içelerdir.", - - "origin.origins_classes.blacksmith.name": "Demir Ustası", - "origin.origins_classes.blacksmith.description": "Herkezin iyi arkadaşları Demir Ustaları daha iyi araçlar, silahlar ve zırhlar üretebilmektedirler.", - - "origin.origins_classes.cleric.name": "İksir Ustası", - "origin.origins_classes.cleric.description": "İksir Ustaları sihri nasıl kendi avantajlarına nasıl kullanacaklarını biliyorlar.", - - "origin.origins_classes.cook.name": "Aşçı", - "origin.origins_classes.cook.description": "Yemeğini sana Aşçı dan daha iyi hazırlicak kişi yok.", - - "origin.origins_classes.farmer.name": "Tarımcı", - "origin.origins_classes.farmer.description": "Çiftçiler, herkese yiyecek sağlar.", - - "origin.origins_classes.merchant.name": "Tüccar", - "origin.origins_classes.merchant.description": "Herzaman fazladan emerald için pazarlık yapar, Tüccarlar uzman Takascılardır.", - - "origin.origins_classes.rancher.name": "Çiftçi", - "origin.origins_classes.rancher.description": "Hayvanlar iyi şekilde yararlanan, Çiftçiler bir çok kullanışlı malzemeyi toplayabilmekte.", - - "origin.origins_classes.miner.name": "Madenci", - "origin.origins_classes.miner.description": "Madenciler dünyanın hazinelerini kazmakta ustalar.", - - "origin.origins_classes.lumberjack.name": "Oduncu", - "origin.origins_classes.lumberjack.description": "Ağaçlar, Oduncular yakınken dikkat etmeli.", - - "origin.origins_classes.explorer.name": "Maceracı", - "origin.origins_classes.explorer.description": "Maceracılar yollarını zor doğa şartlarına rağmen kolayca bulurlar ve gizli anıtları bulurlar.", - - "origin.origins_classes.nitwit.name": "Beyinsiz", - "origin.origins_classes.nitwit.description": "Bu Mallar hiç birşeyde iyi değil.", - - "power.origins_classes.less_shield_slowdown.name": "Kalkan Uzmanı", - "power.origins_classes.less_shield_slowdown.description": "Kalkanını kullanıyorken daha az yavaşlarsın.", - - "power.origins_classes.sneaky.name": "Sinsi", - "power.origins_classes.sneaky.description": "İsmin duvarların ardından gözükmez, eğilmiyorken bile.", - - "power.origins_classes.stealth.name": "Gölgelerin İçinde", - "power.origins_classes.stealth.description": "5 Saniy boyunca eğilirsin Gizlilik moduna geçersin.", - - "power.origins_classes.stealth_core.name": "Gizlilik", - "power.origins_classes.stealth_core.description": "Gizlilik modunda iken, düşmana arkadan saldırdığında daha fazla vurur ve daha az gürültü yaparsın. Eğilmeyi bıraktığında yada bir düşmana vurduğunda gizlilik modundan çıkarsın.", - - "power.origins_classes.less_bow_slowdown.name": "Kıvrak", - "power.origins_classes.less_bow_slowdown.description": "Yayını çekerken daha hızlı hareket edebilirsin.", - - "power.origins_classes.no_projectile_divergence.name": "İsabet", - "power.origins_classes.no_projectile_divergence.description": "Fırlattığın tüm şeylerin İsabetliliği daha fazla.", - - "power.origins_classes.more_attack_damage.name": "Silah Bilgisi", - "power.origins_classes.more_attack_damage.description": "Her silahi tam potensiyallerinde kullanır, biraz daha hasar verir.", - - "power.origins_classes.tamed_animal_boost.name": "Hayvan Arkadaşlar", - "power.origins_classes.tamed_animal_boost.description": "Senin evcilleştirdiğin hayvanlar daha güçlü ve dayanıklıdır.", - - "power.origins_classes.tamed_potion_diffusal.name": "Empati", - "power.origins_classes.tamed_potion_diffusal.description": "İksir etkisinde olduğunda etkisi yakındaki evcil hayvanlarıda etkiler.", - - "power.origins_classes.more_smoker_xp.name": "Duman Fırını Ustası", - "power.origins_classes.more_smoker_xp.description": "Duman Fırınında yemek pişirmekten daha fazla tecrübe puanı alırsın.", - - "power.origins_classes.better_crafted_food.name": "Doyurucu Öğünler", - "power.origins_classes.better_crafted_food.description": "Senin tarafından yapılan yemekler daha fazla doyurur.", - - "power.origins_classes.potion_bonus.name": "Uzatılmış İksirler", - "power.origins_classes.potion_bonus.description": "İksir yapımında son aşama olarak, bi iksirin süresini su dolu bir kazana sağ tıklayarak ikiye katlayabilirsin.", - - "power.origins_classes.better_enchanting.name": "Büyü Ustsı", - "power.origins_classes.better_enchanting.description": "Büyü Masasında daha iyi büyüler çıkarabilirsin.", - - "power.origins_classes.quality_equipment.name": "Kaliteli Araç-Gereç", - "power.origins_classes.quality_equipment.description": "Senin ürettiğin araçlar küçük artıları vardır.", - - "power.origins_classes.efficient_repairs.name": "Verimli Tamirler", - "power.origins_classes.efficient_repairs.description": "Anvilde eşya tamir etmek daha az malzeme gerektirir. Ve daha verimli eşya birleştirsin.", - - "power.origins_classes.more_crop_drops.name": "Verimli Hasat", - "power.origins_classes.more_crop_drops.description": "Mahsul hasat ederken bi şanşla iki katı malzeme alırsın.", - - "power.origins_classes.better_bone_meal.name": "Verimli Kemik Tozu", - "power.origins_classes.better_bone_meal.description": "Tecrübeli ellerinde kemik tozu iki katı daha etkili.", - - "power.origins_classes.twin_breeding.name": "İkizler", - "power.origins_classes.twin_breeding.description": "Doğurttuğun hayvanlar bi şanşla ikiz olur.", - - "power.origins_classes.more_animal_loot.name": "Verimli Eller", - "power.origins_classes.more_animal_loot.description": "Bazen hayvanlardan daha fazla malzeme düşürürsün.", - - "power.origins_classes.trade_availability.name": "Hızlı Stoklama", - "power.origins_classes.trade_availability.description": "Takas yaptığın köylülerün stokları bitmez.", - - "power.origins_classes.rare_wandering_loot.name": "Karizma", - "power.origins_classes.rare_wandering_loot.description": "Gezgin Tüccarları sana daha kaliteli eşylaranı göstermeye ikna edebilirsin.", - - "power.origins_classes.no_sprint_exhaustion.name": "Fit", - "power.origins_classes.no_sprint_exhaustion.description": "Koşmak seni yormaz.", - - "power.origins_classes.explorer_kit.name": "Maceracı Kiti", - "power.origins_classes.explorer_kit.description": "Oyunu bir pusula, bir saat ve dokuz boş harita ile başlarsın.", - - "power.origins_classes.no_mining_exhaustion.name": "Tecrübeli Madenci", - "power.origins_classes.no_mining_exhaustion.description": "Blok Kırmak Seni Yormaz.", - - "power.origins_classes.more_stone_break_speed.name": "Uzman Madenci", - "power.origins_classes.more_stone_break_speed.description": "Taşları daha hızlı kırarsın.", - - "power.origins_classes.tree_felling.name": "Timber!", - "power.origins_classes.tree_felling.description": "Eğilmediğin sürece koca ağaçları tekte kessebilirsin.", - - "power.origins_classes.more_planks_from_logs.name": "Verimli Üretim", - "power.origins_classes.more_planks_from_logs.description": "1 kütükten 6 tahta alırsın." -} \ No newline at end of file diff --git a/src/main/resources/assets/origins_classes/lang/zh_cn.json b/src/main/resources/assets/origins_classes/lang/zh_cn.json deleted file mode 100644 index 017a17d..0000000 --- a/src/main/resources/assets/origins_classes/lang/zh_cn.json +++ /dev/null @@ -1,133 +0,0 @@ - -{ - "layer.origins_classes.class.name": "职业", - - "tooltip.origins_classes.food_bonus": "+%s 营养", - "tooltip.origins_classes.potion_bonus": "+%s 效力", - - "attribute.origins_classes.mining_speed": "挖掘速度", - "attribute.origins_classes.projectile_strength": "弹射物强度", - - "origin.origins_classes.warrior.name": "战士", - "origin.origins_classes.warrior.description": "可敬的战士们更乐意以剑与盾的对决与对手一决胜负。", - - "origin.origins_classes.archer.name": "弓手", - "origin.origins_classes.archer.description": "一发入魂。", - - "origin.origins_classes.rogue.name": "侠盗", - "origin.origins_classes.rogue.description": "以小偷和强盗的身份广为人知,侠盗擅长埋伏与偷袭。", - - "origin.origins_classes.beastmaster.name": "驯兽师", - "origin.origins_classes.beastmaster.description": "天性孤独的驯兽师们更愿意与动物们作伴。", - - "origin.origins_classes.blacksmith.name": "铁匠", - "origin.origins_classes.blacksmith.description": "铁匠师傅谁不爱呢?铁匠铸就的武器,工具和盔甲毕竟一流。", - - "origin.origins_classes.cleric.name": "牧师", - "origin.origins_classes.cleric.description": "牧师明白怎么将世界的魔法融会贯通并为己所用。", - - "origin.origins_classes.cook.name": "厨师", - "origin.origins_classes.cook.description": "还有谁更懂厨艺呢?", - - "origin.origins_classes.farmer.name": "农民", - "origin.origins_classes.farmer.description": "常为大家带来温饱——抽点时间惦记一下他们吧。", - - "origin.origins_classes.merchant.name": "商人", - "origin.origins_classes.merchant.description": "哪怕一颗绿宝石也不会放过!——商人们可是贸易的行家。", - - "origin.origins_classes.rancher.name": "牧民", - "origin.origins_classes.rancher.description": "牧民们更擅长撷取动物资源。", - - "origin.origins_classes.miner.name": "矿工", - "origin.origins_classes.miner.description": "矿工们精于采集大地的矿藏。", - - "origin.origins_classes.lumberjack.name": "伐木工", - "origin.origins_classes.lumberjack.description": "伐木工出没的时候,就是树木要小心的时候。", - - "origin.origins_classes.explorer.name": "探险家", - "origin.origins_classes.explorer.description": "探险家们在险境中之穿梭可谓得心应手,擅长发现隐藏的地点。", - - "origin.origins_classes.nitwit.name": "无用之人", - "origin.origins_classes.nitwit.description": "平庸的同义词。", - - "power.origins_classes.less_shield_slowdown.name": "持盾有术", - "power.origins_classes.less_shield_slowdown.description": "使用盾牌防御自己时的减速惩罚更少。", - - "power.origins_classes.sneaky.name": "悄声", - "power.origins_classes.sneaky.description": "你的名字标签不会在墙的后面显示,哪怕不潜行也是。", - - "power.origins_classes.stealth.name": "隐匿", - "power.origins_classes.stealth.description": "按住潜行按键5秒后会进入匿踪模式。", - - "power.origins_classes.stealth_core.name": "匿踪模式", - "power.origins_classes.stealth_core.description": "进入匿踪模式以后,发出声响减少,且背后偷袭造成伤害更高。松开潜行键将解除匿踪模式。", - - "power.origins_classes.less_bow_slowdown.name": "迅捷", - "power.origins_classes.less_bow_slowdown.description": "你拉弓时的移动速度相比他人更快。", - - "power.origins_classes.no_projectile_divergence.name": "精准", - "power.origins_classes.no_projectile_divergence.description": "你所发射的所有弹射物都更精准。", - - "power.origins_classes.more_attack_damage.name": "武器学者", - "power.origins_classes.more_attack_damage.description": "能够发挥各种武器的最大效能,因此你攻击的伤害会更多一点。", - - "power.origins_classes.tamed_animal_boost.name": "动物朋友", - "power.origins_classes.tamed_animal_boost.description": "你驯养的动物会获得永久的生命值和力量加成。", - - "power.origins_classes.tamed_potion_diffusal.name": "共感", - "power.origins_classes.tamed_potion_diffusal.description": "你驯养的动物在你身边的时候,会同你一起接收饮用获得的药效。", - - "power.origins_classes.more_smoker_xp.name": "熏制能手", - "power.origins_classes.more_smoker_xp.description": "使用烟熏炉烤制食品时获得的经验更多。", - - "power.origins_classes.better_crafted_food.name": "优质食品", - "power.origins_classes.better_crafted_food.description": "你制作的食品所回复的饥饿值和饱和度更多。", - - "power.origins_classes.potion_bonus.name": "精制药水", - "power.origins_classes.potion_bonus.description": "使用炼药锅中的水作为炼药的最后一道工序以加强(对于瞬间效果)或加长(对于持续效果)药效。", - - "power.origins_classes.better_enchanting.name": "附魔大师", - "power.origins_classes.better_enchanting.description": "你能在附魔台获得更高的附魔等级。", - - "power.origins_classes.quality_equipment.name": "优质装备", - "power.origins_classes.quality_equipment.description": "你制作的装备额外提供一点点加成。", - - "power.origins_classes.efficient_repairs.name": "高效修理", - "power.origins_classes.efficient_repairs.description": "铁砧修理装备所花费的材料更少;通过合成修理装备恢复的耐久更多。", - - "power.origins_classes.more_crop_drops.name": "今年收成好啊——", - "power.origins_classes.more_crop_drops.description": "收获农作物时有几率收成加倍。", - - "power.origins_classes.better_bone_meal.name": "施肥有方", - "power.origins_classes.better_bone_meal.description": "骨粉在你熟练的手中对农作物与植物的效果加倍。", - - "power.origins_classes.twin_breeding.name": "双喜临门", - "power.origins_classes.twin_breeding.description": "你喂养繁殖的动物有几率生下双胞胎。", - - "power.origins_classes.more_animal_loot.name": "搜刮能手", - "power.origins_classes.more_animal_loot.description": "你杀死的动物偶尔产出更多掉落。", - - "power.origins_classes.trade_availability.name": "补货", - "power.origins_classes.trade_availability.description": "村民与你交易永远不会断货。", - - "power.origins_classes.rare_wandering_loot.name": "魅力十足", - "power.origins_classes.rare_wandering_loot.description": "你可以说服流浪商人出售一些更稀有的货物。", - - "power.origins_classes.no_sprint_exhaustion.name": "强身健体", - "power.origins_classes.no_sprint_exhaustion.description": "疾跑不会让你感到疲惫。", - - "power.origins_classes.explorer_kit.name": "探险装备", - "power.origins_classes.explorer_kit.description": "游戏开始时你会获得1个指南针、1个钟和9张空地图。", - - "power.origins_classes.no_mining_exhaustion.name": "采石有技巧", - "power.origins_classes.no_mining_exhaustion.description": "采掘方块不会让你感到疲惫。", - - "power.origins_classes.more_stone_break_speed.name": "挖矿有秘方", - "power.origins_classes.more_stone_break_speed.description": "你开采矿石的速度相比他人更快。", - - "power.origins_classes.tree_felling.name": "你给我倒下来——!", - "power.origins_classes.tree_felling.description": "你可以立刻砍下整棵树木,除非你潜行。", - - "power.origins_classes.more_planks_from_logs.name": "木工", - "power.origins_classes.more_planks_from_logs.description": "合成木板的时候你会多获得两个木板。" -} diff --git a/src/main/resources/data/origins_classes/item_modifiers/blacksmith/chestplate.json b/src/main/resources/data/origins-classes/item_modifiers/blacksmith/chestplate.json similarity index 100% rename from src/main/resources/data/origins_classes/item_modifiers/blacksmith/chestplate.json rename to src/main/resources/data/origins-classes/item_modifiers/blacksmith/chestplate.json diff --git a/src/main/resources/data/origins_classes/item_modifiers/blacksmith/helmet.json b/src/main/resources/data/origins-classes/item_modifiers/blacksmith/helmet.json similarity index 100% rename from src/main/resources/data/origins_classes/item_modifiers/blacksmith/helmet.json rename to src/main/resources/data/origins-classes/item_modifiers/blacksmith/helmet.json diff --git a/src/main/resources/data/origins_classes/item_modifiers/blacksmith/leggings.json b/src/main/resources/data/origins-classes/item_modifiers/blacksmith/leggings.json similarity index 100% rename from src/main/resources/data/origins_classes/item_modifiers/blacksmith/leggings.json rename to src/main/resources/data/origins-classes/item_modifiers/blacksmith/leggings.json diff --git a/src/main/resources/data/origins_classes/item_modifiers/blacksmith/melee.json b/src/main/resources/data/origins-classes/item_modifiers/blacksmith/melee.json similarity index 100% rename from src/main/resources/data/origins_classes/item_modifiers/blacksmith/melee.json rename to src/main/resources/data/origins-classes/item_modifiers/blacksmith/melee.json diff --git a/src/main/resources/data/origins_classes/item_modifiers/blacksmith/range.json b/src/main/resources/data/origins-classes/item_modifiers/blacksmith/range.json similarity index 100% rename from src/main/resources/data/origins_classes/item_modifiers/blacksmith/range.json rename to src/main/resources/data/origins-classes/item_modifiers/blacksmith/range.json diff --git a/src/main/resources/data/origins_classes/item_modifiers/blacksmith/shield.json b/src/main/resources/data/origins-classes/item_modifiers/blacksmith/shield.json similarity index 100% rename from src/main/resources/data/origins_classes/item_modifiers/blacksmith/shield.json rename to src/main/resources/data/origins-classes/item_modifiers/blacksmith/shield.json diff --git a/src/main/resources/data/origins_classes/item_modifiers/blacksmith/shoes.json b/src/main/resources/data/origins-classes/item_modifiers/blacksmith/shoes.json similarity index 100% rename from src/main/resources/data/origins_classes/item_modifiers/blacksmith/shoes.json rename to src/main/resources/data/origins-classes/item_modifiers/blacksmith/shoes.json diff --git a/src/main/resources/data/origins_classes/item_modifiers/blacksmith/tool.json b/src/main/resources/data/origins-classes/item_modifiers/blacksmith/tool.json similarity index 100% rename from src/main/resources/data/origins_classes/item_modifiers/blacksmith/tool.json rename to src/main/resources/data/origins-classes/item_modifiers/blacksmith/tool.json diff --git a/src/main/resources/data/origins_classes/item_modifiers/cook/food.json b/src/main/resources/data/origins-classes/item_modifiers/cook/food.json similarity index 100% rename from src/main/resources/data/origins_classes/item_modifiers/cook/food.json rename to src/main/resources/data/origins-classes/item_modifiers/cook/food.json diff --git a/src/main/resources/data/origins_classes/item_modifiers/lumberjack/craft_plank.json b/src/main/resources/data/origins-classes/item_modifiers/lumberjack/craft_plank.json similarity index 100% rename from src/main/resources/data/origins_classes/item_modifiers/lumberjack/craft_plank.json rename to src/main/resources/data/origins-classes/item_modifiers/lumberjack/craft_plank.json diff --git a/src/main/resources/data/origins-classes/origin_layers/class.json b/src/main/resources/data/origins-classes/origin_layers/class.json new file mode 100644 index 0000000..f56c207 --- /dev/null +++ b/src/main/resources/data/origins-classes/origin_layers/class.json @@ -0,0 +1,21 @@ +{ + "replace": false, + "order": 10, + "enabled": true, + "origins": [ + "origins-classes:blacksmith", + "origins-classes:cleric", + "origins-classes:cook", + "origins-classes:farmer", + "origins-classes:merchant", + "origins-classes:rancher", + "origins-classes:miner", + "origins-classes:rogue", + "origins-classes:warrior", + "origins-classes:archer", + "origins-classes:beastmaster", + "origins-classes:lumberjack", + "origins-classes:explorer", + "origins-classes:nitwit" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/origins-classes/origins/archer.json b/src/main/resources/data/origins-classes/origins/archer.json new file mode 100644 index 0000000..0b90c96 --- /dev/null +++ b/src/main/resources/data/origins-classes/origins/archer.json @@ -0,0 +1,9 @@ +{ + "powers": [ + "origins-classes:no_projectile_divergence", + "origins-classes:less_bow_slowdown" + ], + "icon": "minecraft:bow", + "order": 11, + "impact": 0 +} \ No newline at end of file diff --git a/src/main/resources/data/origins-classes/origins/beastmaster.json b/src/main/resources/data/origins-classes/origins/beastmaster.json new file mode 100644 index 0000000..b5b9ff2 --- /dev/null +++ b/src/main/resources/data/origins-classes/origins/beastmaster.json @@ -0,0 +1,9 @@ +{ + "powers": [ + "origins-classes:tamed_animal_boost", + "origins-classes:tamed_potion_diffusal" + ], + "icon": "minecraft:bone", + "order": 13, + "impact": 0 +} \ No newline at end of file diff --git a/src/main/resources/data/origins_classes/origins/blacksmith.json b/src/main/resources/data/origins-classes/origins/blacksmith.json similarity index 50% rename from src/main/resources/data/origins_classes/origins/blacksmith.json rename to src/main/resources/data/origins-classes/origins/blacksmith.json index 7040fb8..40cb21c 100644 --- a/src/main/resources/data/origins_classes/origins/blacksmith.json +++ b/src/main/resources/data/origins-classes/origins/blacksmith.json @@ -1,7 +1,7 @@ { "powers": [ - "origins_classes:quality_equipment", - "origins_classes:efficient_repairs" + "origins-classes:quality_equipment", + "origins-classes:efficient_repairs" ], "icon": "minecraft:iron_ingot", "order": 6, diff --git a/src/main/resources/data/origins_classes/origins/cleric.json b/src/main/resources/data/origins-classes/origins/cleric.json similarity index 54% rename from src/main/resources/data/origins_classes/origins/cleric.json rename to src/main/resources/data/origins-classes/origins/cleric.json index 06d76fd..c5dee5e 100644 --- a/src/main/resources/data/origins_classes/origins/cleric.json +++ b/src/main/resources/data/origins-classes/origins/cleric.json @@ -1,7 +1,7 @@ { "powers": [ - "origins_classes:potion_bonus", - "origins_classes:better_enchanting" + "origins-classes:potion_bonus", + "origins-classes:better_enchanting" ], "icon": "minecraft:experience_bottle", "order": 7, diff --git a/src/main/resources/data/origins_classes/origins/cook.json b/src/main/resources/data/origins-classes/origins/cook.json similarity index 51% rename from src/main/resources/data/origins_classes/origins/cook.json rename to src/main/resources/data/origins-classes/origins/cook.json index bf57298..357fe0e 100644 --- a/src/main/resources/data/origins_classes/origins/cook.json +++ b/src/main/resources/data/origins-classes/origins/cook.json @@ -1,7 +1,7 @@ { "powers": [ - "origins_classes:better_crafted_food", - "origins_classes:more_smoker_xp" + "origins-classes:better_crafted_food", + "origins-classes:more_smoker_xp" ], "icon": "minecraft:rabbit_stew", "order": 5, diff --git a/src/main/resources/data/origins_classes/origins/explorer.json b/src/main/resources/data/origins-classes/origins/explorer.json similarity index 50% rename from src/main/resources/data/origins_classes/origins/explorer.json rename to src/main/resources/data/origins-classes/origins/explorer.json index cb6ea98..a280fde 100644 --- a/src/main/resources/data/origins_classes/origins/explorer.json +++ b/src/main/resources/data/origins-classes/origins/explorer.json @@ -1,7 +1,7 @@ { "powers": [ - "origins_classes:explorer_kit", - "origins_classes:no_sprint_exhaustion" + "origins-classes:explorer_kit", + "origins-classes:no_sprint_exhaustion" ], "icon": "minecraft:compass", "order": 9, diff --git a/src/main/resources/data/origins_classes/origins/farmer.json b/src/main/resources/data/origins-classes/origins/farmer.json similarity index 50% rename from src/main/resources/data/origins_classes/origins/farmer.json rename to src/main/resources/data/origins-classes/origins/farmer.json index fbc37e9..3c2358c 100644 --- a/src/main/resources/data/origins_classes/origins/farmer.json +++ b/src/main/resources/data/origins-classes/origins/farmer.json @@ -1,7 +1,7 @@ { "powers": [ - "origins_classes:more_crop_drops", - "origins_classes:better_bone_meal" + "origins-classes:more_crop_drops", + "origins-classes:better_bone_meal" ], "icon": "minecraft:wheat", "order": 1, diff --git a/src/main/resources/data/origins_classes/origins/lumberjack.json b/src/main/resources/data/origins-classes/origins/lumberjack.json similarity index 50% rename from src/main/resources/data/origins_classes/origins/lumberjack.json rename to src/main/resources/data/origins-classes/origins/lumberjack.json index 9fecca6..25de408 100644 --- a/src/main/resources/data/origins_classes/origins/lumberjack.json +++ b/src/main/resources/data/origins-classes/origins/lumberjack.json @@ -1,7 +1,7 @@ { "powers": [ - "origins_classes:tree_felling", - "origins_classes:more_planks_from_logs" + "origins-classes:tree_felling", + "origins-classes:more_planks_from_logs" ], "icon": "minecraft:iron_axe", "order": 4, diff --git a/src/main/resources/data/origins-classes/origins/merchant.json b/src/main/resources/data/origins-classes/origins/merchant.json new file mode 100644 index 0000000..1c6f668 --- /dev/null +++ b/src/main/resources/data/origins-classes/origins/merchant.json @@ -0,0 +1,9 @@ +{ + "powers": [ + "origins-classes:trade_availability", + "origins-classes:rare_wandering_loot" + ], + "icon": "minecraft:emerald", + "order": 8, + "impact": 0 +} \ No newline at end of file diff --git a/src/main/resources/data/origins-classes/origins/miner.json b/src/main/resources/data/origins-classes/origins/miner.json new file mode 100644 index 0000000..f7fa8f8 --- /dev/null +++ b/src/main/resources/data/origins-classes/origins/miner.json @@ -0,0 +1,9 @@ +{ + "powers": [ + "origins-classes:more_stone_break_speed", + "origins-classes:no_mining_exhaustion" + ], + "icon": "minecraft:iron_pickaxe", + "order": 3, + "impact": 0 +} \ No newline at end of file diff --git a/src/main/resources/data/origins_classes/origins/nitwit.json b/src/main/resources/data/origins-classes/origins/nitwit.json similarity index 100% rename from src/main/resources/data/origins_classes/origins/nitwit.json rename to src/main/resources/data/origins-classes/origins/nitwit.json diff --git a/src/main/resources/data/origins_classes/origins/rancher.json b/src/main/resources/data/origins-classes/origins/rancher.json similarity index 50% rename from src/main/resources/data/origins_classes/origins/rancher.json rename to src/main/resources/data/origins-classes/origins/rancher.json index cd8c8c0..22ffa49 100644 --- a/src/main/resources/data/origins_classes/origins/rancher.json +++ b/src/main/resources/data/origins-classes/origins/rancher.json @@ -1,7 +1,7 @@ { "powers": [ - "origins_classes:twin_breeding", - "origins_classes:more_animal_loot" + "origins-classes:twin_breeding", + "origins-classes:more_animal_loot" ], "icon": "minecraft:lead", "order": 2, diff --git a/src/main/resources/data/origins-classes/origins/rogue.json b/src/main/resources/data/origins-classes/origins/rogue.json new file mode 100644 index 0000000..351b787 --- /dev/null +++ b/src/main/resources/data/origins-classes/origins/rogue.json @@ -0,0 +1,10 @@ +{ + "powers": [ + "origins-classes:sneaky", + "origins-classes:stealth", + "origins-classes:stealth_core" + ], + "icon": "minecraft:leather_helmet", + "order": 12, + "impact": 0 +} \ No newline at end of file diff --git a/src/main/resources/data/origins_classes/origins/warrior.json b/src/main/resources/data/origins-classes/origins/warrior.json similarity index 50% rename from src/main/resources/data/origins_classes/origins/warrior.json rename to src/main/resources/data/origins-classes/origins/warrior.json index 6f6652b..1f854d1 100644 --- a/src/main/resources/data/origins_classes/origins/warrior.json +++ b/src/main/resources/data/origins-classes/origins/warrior.json @@ -1,7 +1,7 @@ { "powers": [ - "origins_classes:more_attack_damage", - "origins_classes:less_shield_slowdown" + "origins-classes:more_attack_damage", + "origins-classes:less_shield_slowdown" ], "icon": "minecraft:iron_sword", "order": 10, diff --git a/src/main/resources/data/origins_classes/powers/better_bone_meal.json b/src/main/resources/data/origins-classes/powers/better_bone_meal.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/better_bone_meal.json rename to src/main/resources/data/origins-classes/powers/better_bone_meal.json diff --git a/src/main/resources/data/origins_classes/powers/better_crafted_food.json b/src/main/resources/data/origins-classes/powers/better_crafted_food.json similarity index 76% rename from src/main/resources/data/origins_classes/powers/better_crafted_food.json rename to src/main/resources/data/origins-classes/powers/better_crafted_food.json index 1744239..4efa7dd 100644 --- a/src/main/resources/data/origins_classes/powers/better_crafted_food.json +++ b/src/main/resources/data/origins-classes/powers/better_crafted_food.json @@ -5,6 +5,6 @@ }, "item_action": { "type": "apoli:modify", - "modifier": "origins_classes:cook/food" + "modifier": "origins-classes:cook/food" } } \ No newline at end of file diff --git a/src/main/resources/data/origins_classes/powers/better_enchanting.json b/src/main/resources/data/origins-classes/powers/better_enchanting.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/better_enchanting.json rename to src/main/resources/data/origins-classes/powers/better_enchanting.json diff --git a/src/main/resources/data/origins_classes/powers/efficient_repairs.json b/src/main/resources/data/origins-classes/powers/efficient_repairs.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/efficient_repairs.json rename to src/main/resources/data/origins-classes/powers/efficient_repairs.json diff --git a/src/main/resources/data/origins_classes/powers/explorer_kit.json b/src/main/resources/data/origins-classes/powers/explorer_kit.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/explorer_kit.json rename to src/main/resources/data/origins-classes/powers/explorer_kit.json diff --git a/src/main/resources/data/origins_classes/powers/less_bow_slowdown.json b/src/main/resources/data/origins-classes/powers/less_bow_slowdown.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/less_bow_slowdown.json rename to src/main/resources/data/origins-classes/powers/less_bow_slowdown.json diff --git a/src/main/resources/data/origins_classes/powers/less_shield_slowdown.json b/src/main/resources/data/origins-classes/powers/less_shield_slowdown.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/less_shield_slowdown.json rename to src/main/resources/data/origins-classes/powers/less_shield_slowdown.json diff --git a/src/main/resources/data/origins_classes/powers/more_animal_loot.json b/src/main/resources/data/origins-classes/powers/more_animal_loot.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/more_animal_loot.json rename to src/main/resources/data/origins-classes/powers/more_animal_loot.json diff --git a/src/main/resources/data/origins_classes/powers/more_attack_damage.json b/src/main/resources/data/origins-classes/powers/more_attack_damage.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/more_attack_damage.json rename to src/main/resources/data/origins-classes/powers/more_attack_damage.json diff --git a/src/main/resources/data/origins_classes/powers/more_crop_drops.json b/src/main/resources/data/origins-classes/powers/more_crop_drops.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/more_crop_drops.json rename to src/main/resources/data/origins-classes/powers/more_crop_drops.json diff --git a/src/main/resources/data/origins_classes/powers/more_planks_from_logs.json b/src/main/resources/data/origins-classes/powers/more_planks_from_logs.json similarity index 78% rename from src/main/resources/data/origins_classes/powers/more_planks_from_logs.json rename to src/main/resources/data/origins-classes/powers/more_planks_from_logs.json index 14f4323..f445f68 100644 --- a/src/main/resources/data/origins_classes/powers/more_planks_from_logs.json +++ b/src/main/resources/data/origins-classes/powers/more_planks_from_logs.json @@ -8,6 +8,6 @@ }, "item_action": { "type": "apoli:modify", - "modifier": "origins_classes:lumberjack/craft_plank" + "modifier": "origins-classes:lumberjack/craft_plank" } } \ No newline at end of file diff --git a/src/main/resources/data/origins_classes/powers/more_smoker_xp.json b/src/main/resources/data/origins-classes/powers/more_smoker_xp.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/more_smoker_xp.json rename to src/main/resources/data/origins-classes/powers/more_smoker_xp.json diff --git a/src/main/resources/data/origins_classes/powers/more_stone_break_speed.json b/src/main/resources/data/origins-classes/powers/more_stone_break_speed.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/more_stone_break_speed.json rename to src/main/resources/data/origins-classes/powers/more_stone_break_speed.json diff --git a/src/main/resources/data/origins_classes/powers/no_mining_exhaustion.json b/src/main/resources/data/origins-classes/powers/no_mining_exhaustion.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/no_mining_exhaustion.json rename to src/main/resources/data/origins-classes/powers/no_mining_exhaustion.json diff --git a/src/main/resources/data/origins_classes/powers/no_projectile_divergence.json b/src/main/resources/data/origins-classes/powers/no_projectile_divergence.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/no_projectile_divergence.json rename to src/main/resources/data/origins-classes/powers/no_projectile_divergence.json diff --git a/src/main/resources/data/origins_classes/powers/no_sprint_exhaustion.json b/src/main/resources/data/origins-classes/powers/no_sprint_exhaustion.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/no_sprint_exhaustion.json rename to src/main/resources/data/origins-classes/powers/no_sprint_exhaustion.json diff --git a/src/main/resources/data/origins_classes/powers/potion_bonus.json b/src/main/resources/data/origins-classes/powers/potion_bonus.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/potion_bonus.json rename to src/main/resources/data/origins-classes/powers/potion_bonus.json diff --git a/src/main/resources/data/origins_classes/powers/quality_equipment.json b/src/main/resources/data/origins-classes/powers/quality_equipment.json similarity index 77% rename from src/main/resources/data/origins_classes/powers/quality_equipment.json rename to src/main/resources/data/origins-classes/powers/quality_equipment.json index 3504093..6491afe 100644 --- a/src/main/resources/data/origins_classes/powers/quality_equipment.json +++ b/src/main/resources/data/origins-classes/powers/quality_equipment.json @@ -7,7 +7,7 @@ }, "item_action": { "type": "apoli:modify", - "modifier": "origins_classes:blacksmith/melee" + "modifier": "origins-classes:blacksmith/melee" } }, "range": { @@ -17,7 +17,7 @@ }, "item_action": { "type": "apoli:modify", - "modifier": "origins_classes:blacksmith/range" + "modifier": "origins-classes:blacksmith/range" } }, "tool": { @@ -27,7 +27,7 @@ }, "item_action": { "type": "apoli:modify", - "modifier": "origins_classes:blacksmith/tool" + "modifier": "origins-classes:blacksmith/tool" } }, "shield": { @@ -37,7 +37,7 @@ }, "item_action": { "type": "apoli:modify", - "modifier": "origins_classes:blacksmith/shield" + "modifier": "origins-classes:blacksmith/shield" } }, "helmet": { @@ -47,7 +47,7 @@ }, "item_action": { "type": "apoli:modify", - "modifier": "origins_classes:blacksmith/helmet" + "modifier": "origins-classes:blacksmith/helmet" } }, "chestplate": { @@ -57,7 +57,7 @@ }, "item_action": { "type": "apoli:modify", - "modifier": "origins_classes:blacksmith/chestplate" + "modifier": "origins-classes:blacksmith/chestplate" } }, "leggings": { @@ -67,7 +67,7 @@ }, "item_action": { "type": "apoli:modify", - "modifier": "origins_classes:blacksmith/leggings" + "modifier": "origins-classes:blacksmith/leggings" } }, "shoes": { @@ -77,7 +77,7 @@ }, "item_action": { "type": "apoli:modify", - "modifier": "origins_classes:blacksmith/shoes" + "modifier": "origins-classes:blacksmith/shoes" } } } \ No newline at end of file diff --git a/src/main/resources/data/origins_classes/powers/rare_wandering_loot.json b/src/main/resources/data/origins-classes/powers/rare_wandering_loot.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/rare_wandering_loot.json rename to src/main/resources/data/origins-classes/powers/rare_wandering_loot.json diff --git a/src/main/resources/data/origins_classes/powers/sneaky.json b/src/main/resources/data/origins-classes/powers/sneaky.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/sneaky.json rename to src/main/resources/data/origins-classes/powers/sneaky.json diff --git a/src/main/resources/data/origins_classes/powers/stealth.json b/src/main/resources/data/origins-classes/powers/stealth.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/stealth.json rename to src/main/resources/data/origins-classes/powers/stealth.json diff --git a/src/main/resources/data/origins_classes/powers/stealth_core.json b/src/main/resources/data/origins-classes/powers/stealth_core.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/stealth_core.json rename to src/main/resources/data/origins-classes/powers/stealth_core.json diff --git a/src/main/resources/data/origins_classes/powers/tamed_animal_boost.json b/src/main/resources/data/origins-classes/powers/tamed_animal_boost.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/tamed_animal_boost.json rename to src/main/resources/data/origins-classes/powers/tamed_animal_boost.json diff --git a/src/main/resources/data/origins_classes/powers/tamed_potion_diffusal.json b/src/main/resources/data/origins-classes/powers/tamed_potion_diffusal.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/tamed_potion_diffusal.json rename to src/main/resources/data/origins-classes/powers/tamed_potion_diffusal.json diff --git a/src/main/resources/data/origins_classes/powers/trade_availability.json b/src/main/resources/data/origins-classes/powers/trade_availability.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/trade_availability.json rename to src/main/resources/data/origins-classes/powers/trade_availability.json diff --git a/src/main/resources/data/origins_classes/powers/tree_felling.json b/src/main/resources/data/origins-classes/powers/tree_felling.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/tree_felling.json rename to src/main/resources/data/origins-classes/powers/tree_felling.json diff --git a/src/main/resources/data/origins_classes/powers/twin_breeding.json b/src/main/resources/data/origins-classes/powers/twin_breeding.json similarity index 100% rename from src/main/resources/data/origins_classes/powers/twin_breeding.json rename to src/main/resources/data/origins-classes/powers/twin_breeding.json diff --git a/src/main/resources/data/origins_classes/tags/entity_types/infinite_trader.json b/src/main/resources/data/origins-classes/tags/entity_types/infinite_trader.json similarity index 100% rename from src/main/resources/data/origins_classes/tags/entity_types/infinite_trader.json rename to src/main/resources/data/origins-classes/tags/entity_types/infinite_trader.json diff --git a/src/main/resources/data/origins_classes/tags/items/merchant_blacklist.json b/src/main/resources/data/origins-classes/tags/items/merchant_blacklist.json similarity index 100% rename from src/main/resources/data/origins_classes/tags/items/merchant_blacklist.json rename to src/main/resources/data/origins-classes/tags/items/merchant_blacklist.json diff --git a/src/main/resources/data/origins_classes/origin_layers/class.json b/src/main/resources/data/origins_classes/origin_layers/class.json deleted file mode 100644 index c316615..0000000 --- a/src/main/resources/data/origins_classes/origin_layers/class.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "replace": false, - "order": 10, - "enabled": true, - "origins": [ - "origins_classes:blacksmith", - "origins_classes:cleric", - "origins_classes:cook", - "origins_classes:farmer", - "origins_classes:merchant", - "origins_classes:rancher", - "origins_classes:miner", - "origins_classes:rogue", - "origins_classes:warrior", - "origins_classes:archer", - "origins_classes:beastmaster", - "origins_classes:lumberjack", - "origins_classes:explorer", - "origins_classes:nitwit" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/origins_classes/origins/archer.json b/src/main/resources/data/origins_classes/origins/archer.json deleted file mode 100644 index 134a0c9..0000000 --- a/src/main/resources/data/origins_classes/origins/archer.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "powers": [ - "origins_classes:no_projectile_divergence", - "origins_classes:less_bow_slowdown" - ], - "icon": "minecraft:bow", - "order": 11, - "impact": 0 -} \ No newline at end of file diff --git a/src/main/resources/data/origins_classes/origins/beastmaster.json b/src/main/resources/data/origins_classes/origins/beastmaster.json deleted file mode 100644 index 439d800..0000000 --- a/src/main/resources/data/origins_classes/origins/beastmaster.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "powers": [ - "origins_classes:tamed_animal_boost", - "origins_classes:tamed_potion_diffusal" - ], - "icon": "minecraft:bone", - "order": 13, - "impact": 0 -} \ No newline at end of file diff --git a/src/main/resources/data/origins_classes/origins/merchant.json b/src/main/resources/data/origins_classes/origins/merchant.json deleted file mode 100644 index 9b04e09..0000000 --- a/src/main/resources/data/origins_classes/origins/merchant.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "powers": [ - "origins_classes:trade_availability", - "origins_classes:rare_wandering_loot" - ], - "icon": "minecraft:emerald", - "order": 8, - "impact": 0 -} \ No newline at end of file diff --git a/src/main/resources/data/origins_classes/origins/miner.json b/src/main/resources/data/origins_classes/origins/miner.json deleted file mode 100644 index aec548f..0000000 --- a/src/main/resources/data/origins_classes/origins/miner.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "powers": [ - "origins_classes:more_stone_break_speed", - "origins_classes:no_mining_exhaustion" - ], - "icon": "minecraft:iron_pickaxe", - "order": 3, - "impact": 0 -} \ No newline at end of file diff --git a/src/main/resources/data/origins_classes/origins/rogue.json b/src/main/resources/data/origins_classes/origins/rogue.json deleted file mode 100644 index 12fe053..0000000 --- a/src/main/resources/data/origins_classes/origins/rogue.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "powers": [ - "origins_classes:sneaky", - "origins_classes:stealth", - "origins_classes:stealth_core" - ], - "icon": "minecraft:leather_helmet", - "order": 12, - "impact": 0 -} \ No newline at end of file