We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
怨念琥珀块转化刷怪笼的方法
摆放对应的结构,使用巨型铁砧合成,不需要超压器,为结构→结构型配方 以下使用结构工具生成: MultiblockRecipe.builder("minecraft:spawner", 1) .layer("ABA", "CDC", "ABA") .layer("E E", " F ", "E E") .layer("ABA", "C C", "ABA") .symbol('A', "anvilcraft:cursed_gold_block") .symbol('B', BlockPredicateWithState.of("minecraft:chain") .hasState("axis", "x") ) .symbol('C', BlockPredicateWithState.of("minecraft:chain") .hasState("axis", "z") ) .symbol('D', "minecraft:soul_fire") .symbol('E', BlockPredicateWithState.of("minecraft:chain") .hasState("axis", "y") ) .symbol('F', "anvilcraft:resentful_amber_block") .save(provider); 但不是给刷怪笼物品,是将对应的怨恨琥珀块变为对应的刷怪笼,灵魂火熄灭,诅咒金块变为幽匿块,铁链变为蜘蛛网,结果结构用结构工具生成如下: MultiblockRecipe.builder("minecraft:spawner", 1) .layer("ABA", "B B", "ABA") .layer("B B", " C ", "B B") .layer("ABA", "B B", "ABA") .symbol('A', "minecraft:sculk") .symbol('B', "minecraft:cobweb") .symbol('C', "minecraft:spawner") .save(provider);
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Matters to be added to TODO - 将要加入TODO的事项
怨念琥珀块转化刷怪笼的方法
Describe what this TODO will do - 描述这个TODO要做的事情
摆放对应的结构,使用巨型铁砧合成,不需要超压器,为结构→结构型配方
以下使用结构工具生成:
MultiblockRecipe.builder("minecraft:spawner", 1)
.layer("ABA", "CDC", "ABA")
.layer("E E", " F ", "E E")
.layer("ABA", "C C", "ABA")
.symbol('A', "anvilcraft:cursed_gold_block")
.symbol('B', BlockPredicateWithState.of("minecraft:chain")
.hasState("axis", "x")
)
.symbol('C', BlockPredicateWithState.of("minecraft:chain")
.hasState("axis", "z")
)
.symbol('D', "minecraft:soul_fire")
.symbol('E', BlockPredicateWithState.of("minecraft:chain")
.hasState("axis", "y")
)
.symbol('F', "anvilcraft:resentful_amber_block")
.save(provider);
但不是给刷怪笼物品,是将对应的怨恨琥珀块变为对应的刷怪笼,灵魂火熄灭,诅咒金块变为幽匿块,铁链变为蜘蛛网,结果结构用结构工具生成如下:
MultiblockRecipe.builder("minecraft:spawner", 1)
.layer("ABA", "B B", "ABA")
.layer("B B", " C ", "B B")
.layer("ABA", "B B", "ABA")
.symbol('A', "minecraft:sculk")
.symbol('B', "minecraft:cobweb")
.symbol('C', "minecraft:spawner")
.save(provider);
The text was updated successfully, but these errors were encountered: