这个模组允许你将战利品表中的个别表格或物品添加到游戏阶段模组中的阶段中。类似的模组有“配方阶段”(Recipes Stages)、“生物阶段”(Mob Stages)等。
目前存在着以下战利品表:
- 箱子战利品表(Chest Loot Table)
- 实体战利品表(Entity Loot Table)
- 箱子物品表(Chest Item Table)
- 方块战利品表(Block Loot Table)
- 钓鱼战利品表(Fishing Loot Table)
如果你有任何关于如何补充这个模组的想法,请告诉我们!
你需要安装“游戏阶段”(Game Stages)和“工艺调整器”(CraftTweaker)。
示例
导入模组:
import mods.lootstages.LootStages;
已复制!
添加箱子物品阶段:
LootStages.addChestItemStage(String stage, ResourceLocation table, IItemStack itemStack);
LootStages.addChestItemStage("one", <resource:minecraft:chests/village/village_butcher>, <item:minecraft:beef>);
已复制!
添加箱子表格阶段:
LootStages.addChestTableStage(String stage, ResourceLocation table, ResourceLocation replaceTable);
LootStages.addChestTableStage("two", <resource:minecraft:chests/village/village_butcher>, <resource:minecraft:chests/village/village_mason>);
已复制!
添加实体表格阶段:
LootStages.addEntityTableStage(String stage, ResourceLocation table, ResourceLocation replaceTable);
LootStages.addEntityTableStage("three", <resource:minecraft:entities/pig>, <resource:minecraft:chests/village/village_butcher>);
已复制!
添加方块表格阶段:
LootStages.addBlockTableStages(String stage, Block block, ResourceLocation replaceTable);
LootStages.addBlockTableStages(String stage, Block block, IItemStack itemStack);
LootStages.addBlockTableStages("test1", <block:minecraft:dirt>, <resource:minecraft:chests/village/village_mason>);
LootStages.addBlockTableStages("test2", <block:minecraft:dirt>, <item:minecraft:beef>);
已复制!
来自Modrinth
Loot Stages 1.20.1-1.0.0
sdmlootstages-1.20.1-1.0.0.jar下载1.20.1-1.0.0#Release
展开
版本: 1.20.1-1.0.0
支持游戏: 1.20.1
类型: Forge
Release
下载次数: 445
Loot Stages 1.18.2-V0.7
lootstages-1.18.2-V0.7.jar下载1.18.2-V0.7#Release
展开
版本: 1.18.2-V0.7
支持游戏: 1.18.2
类型: Forge
Release
下载次数: 83
Loot Stages 1.19.2-V0.7
lootstages-1.19.2-V0.7.jar下载1.19.2-V0.7#Release
展开
版本: 1.19.2-V0.7
支持游戏: 1.19.2
类型: Forge
Release
下载次数: 189
收录