Apotheosis

Apotheosis

89M Downloads

Adding a function for making a loot table with non random affix item with choose rarity via datapack

coolbooy2002 opened this issue · 7 comments

commented

Hello, me again

I wrote earlier

Ideally, I would also increase the chances of higher rarity with distance (like for auto-leveling mob mod), I might have thought that if there was a function for turning item into a certain rarity item or gem for loot_table, not like generating random item with random rarity, then I could rewrite the drop of rarities in chests (i thing like rewrite every loot_table).

I really like this mod, but it's very dynamic and there are a lot of values on the items. I planing a very slow game progress, and therefore I want to do this.

Originally posted by @coolbooy2002 in #1499

It would be super cool if I could use the lotify command in the datapack, but it is tied to the item in the mainhand of player. So please, please, please can you make that? It would be perfect if I can use this function for exemple on minecraft:iron_sword and set uncommon rarity!

Something like in iron's spells and books. I dont now all the things, but there class and examle of using it.

Pleaseeee!

commented

technically aleady doable

public class AffixLootPoolEntry extends LootPoolSingletonContainer {

{
"type": "apotheosis:random_affix_item",
"weight": 20,
"quality": 15,
"rarity": "rare"
}
],

entries is an optional list of references of this:

public final class AffixLootEntry implements CodecProvider<AffixLootEntry>, ILuckyWeighted, IDimensional, RarityClamp, IStaged {

meaning, you can reference this entry e.g.

{
"dimensions": [
"minecraft:overworld"
],
"min_rarity": "apotheosis:common",
"max_rarity": "apotheosis:rare",
"weight": 85,
"quality": 4.0,
"stack": {
"item": "minecraft:iron_sword",
"count": 1,
"nbt": {
"Damage": 0
}
}
}

commented

In version 1.20.1

commented

Maybe I don't get it, but I tried, and get random stuff. Min max rarity works perfectly, but stack is ingnored.

{
  "pools": [
    {
      "rolls": 9,
      "entries": [
        {
          "type": "apotheosis:random_affix_item",
          "stack": {
            "item": "minecraft:iron_sword",
            "count": 1,
            "nbt": {
              "Damage": 0
            }
          },
          "min_rarity": "common",
          "max_rarity": "common"
        }
      ]
    }
  ]
}

Image

commented

entries is a list of string
thats why i said you reference it - a reference being apotheosis:overworld/iron_sword e.g.

commented

I'm completely lost.

{
  "pools": [
    {
      "rolls": 1,
      "entries": [
        {
          "type": "minecraft:item",
          "name": "minecraft:iron_sword",
          "functions": [
            {
              "function": "minecraft:reference",
              "name": "apotheosis:overworld/iron_sword"
            }
          ]
        }
      ],
      "functions": [
        {
          "function": "minecraft:reference",
          "name": "apotheosis:overworld/iron_sword"
        }
      ]
    }
  ]
}

Sorry, not cool with this stuff, can I have an example, please...

Also If I change affix_loot_entries/overworld/iron_sword.json to be only common, then can I made other affix_loot_entrie, but like iron_sword_uncommon?

commented

not sure how you came to whatever you wrote there
like i said, entries can reference affix entries you or apotheois have defined

the loot table entry can override the rarity to be used, so you dont need to define multiple affix entries

{
  "type": "minecraft:generic",
  "pools": [
    {
      "rolls": 1,
      "entries": [
        {
          "type": "apotheosis:random_affix_item",
          "weight": 20,
          "quality": 15,
          "min_rarity": "common",
          "max_rarity": "uncommon",
          "entries": [
            "apotheosis:overworld/iron_sword"
          ]
        }
      ]
    }
  ]
}
commented

YES

It exactly what I need, thank you @SiverDX!

not sure how you came to whatever you wrote there

I don't know either