
PortalTransform
Added a new portal recipe.
1K загрузок11 подписчиковMITforgeneoforge
Обновлён 8 февраля 2026 г. · опубликован 4 мая 2025 г.
PortalTransform Recipe

Portal Transmutation - When players hurl items into portals, they undergo elemental conversion with possible byproducts. Full datapack extensibility! Design custom transmutation chains through JSON configurations.
This JSON file should be placed in the following directory: /data/portaltransform/recipe/
{
"type": "portaltransform:portal_transform",
"input": {
"item": "minecraft:diamond",
},
"result": {
"id": "minecraft:emerald"
},
// Optional: Dimension constraints
// "current_dimension": "minecraft:overworld",
// "target_dimension": "minecraft:the_nether",
"byproducts": [
{
"byproduct": { "id": "minecraft:lapis_lazuli" },
"chance": 0.9,
"counts": {
"min": 1,
"max": 3
}
}
]
}
ServerEvents.recipes((event) => {
event.recipes.portaltransform.item_transform(
"minecraft:cobblestone",
"minecraft:prismarine",
[
Byproduct.of("minecraft:redstone", 0.8, 1, 4)
],
{
current: "minecraft:overworld",
target: "minecraft:the_nether"
},
"any", // It can be "any", "clear", "rain", "thunder"
0.1
);
})
If you find errors according to the code on this page, you may need to check here.
Версии
| Версия | Канал | Игра | Загрузчики | Дата | Скачать |
|---|---|---|---|---|---|
| 0.7.2+1.20.1 | Релиз | 1.20.1 | forge | 8 февраля 2026 г. | Скачать (124 КБ) |
| 0.7.2+1.21.1 | Релиз | 1.21.8, 1.21.9, 1.21.10, 1.21.11 | neoforge | 7 января 2026 г. | Скачать (112 КБ) |
| 0.6.8+1.21.1 | Релиз | 1.21.3, 1.21.4, 1.21.5, 1.21.6 | neoforge | 8 августа 2025 г. | Скачать (66 КБ) |
| 0.6.7+1.21.1 | Релиз | 1.21.3, 1.21.4, 1.21.5, 1.21.6 | neoforge | 20 июня 2025 г. | Скачать (68 КБ) |
| 0.6.6+1.21.1 | Релиз | 1.21.3, 1.21.4, 1.21.5, 1.21.6 | neoforge | 18 июня 2025 г. | Скачать (65 КБ) |
| 0.6.5+1.21.1 | Релиз | 1.21.2, 1.21.3, 1.21.4, 1.21.5 | neoforge | 10 июня 2025 г. | Скачать (61 КБ) |
| 0.6.4+1.21.1 | Релиз | 1.21.2, 1.21.3, 1.21.4, 1.21.5 | neoforge | 30 мая 2025 г. | Скачать (59 КБ) |
| 0.6.1+1.21.1 | Релиз | 1.21.2, 1.21.3, 1.21.4, 1.21.5 | neoforge | 5 мая 2025 г. | Скачать (47 КБ) |
| 0.6.0+1.21.1 | Релиз | 1.21.2, 1.21.3, 1.21.4, 1.21.5 | neoforge | 4 мая 2025 г. | Скачать (46 КБ) |
| 0.5.9+1.21.1 | Релиз | 1.21.2, 1.21.3, 1.21.4, 1.21.5 | neoforge | 4 мая 2025 г. | Скачать (45 КБ) |
Ченджлог
0.7.2+1.21.1Релиз1.21.9, 1.21.10, 1.21.11 · 7 января 2026 г.
update and use kjs 7.2
0.6.7+1.21.1Релиз1.21.4, 1.21.5, 1.21.6 · 20 июня 2025 г.
0.6.6+1.21.1Релиз1.21.4, 1.21.5, 1.21.6 · 18 июня 2025 г.
0.6.5+1.21.1Релиз1.21.3, 1.21.4, 1.21.5 · 10 июня 2025 г.
0.6.4+1.21.1Релиз1.21.3, 1.21.4, 1.21.5 · 30 мая 2025 г.
Add a new condition:
- Weather
0.6.0+1.21.1Релиз1.21.3, 1.21.4, 1.21.5 · 4 мая 2025 г.
Fix textures
Комментарии
Загружаем…