Description -説明-
EN
This mod is a remake of Regen_Ore.
It is primarily a mod aimed at resource regeneration.
It is intended for use in adventure and RP servers.
TT_Core is required as a prerequisite mod.
JP
このMODはRegen_OreのリメイクMODです。
主に、資源の再生を目的としたMODです。
アドベンチャーやRPサーバーで利用することを目的としています。
前提MODとしてTT_Coreが必要です。
How to add regen -再生に追加する方法-
EN
RegenPresets file generated in the config file contains a default JSON file for regenerating vanilla ores.
You can customize the regeneration process by modifying the values, changing items, or adding new ones.
You can also create your own custom presets.
For more details, please see the wiki.
*Currently, only the Japanese page is available.
Example: custom_preset.json
*This code cannot be used directly by copying and pasting.
{
"preset": "stone_preset", #The appearance of the presets. The currently available ones are those used with the default JSON names.
"entries": [
{
"tick": 200, #Regen time: 20 ticks = 1 second
"dimension": [
"minecraft:overworld" #Specify the dimension ID
],
"dimension_exclusion": false, #This setting determines whether to include or exclude the items specified by `dimension`. `true` excludes them.
"blocks": [
"create:zinc_ore" #Block ID to be regen
]
}
]
}
JP
configファイルに生成されるRegenPresetsにデフォルトでバニラ鉱石の再生用Jsonファイルが生成されます。
そちらの数値をいじるか、項目を変更、追加することで再生をカスタマイズできます。
また、自分でカスタムプリセットを作成することもできます。
詳しくはwikiをご覧ください。
例:custom_preset.json
※このコードはコピペで使えません。
{
"preset": "stone_preset", プリセットの見た目。現在用意されている物はデフォルトで用意されているJson名で使用されている物。
"entries": [
{
"tick": 200, 再生時間 20tick = 1秒
"dimension": [
"minecraft:overworld" 指定したいディメンションID
],
"dimension_exclusion": false, dimensionで指定した物を対象にするか、除外にするかの設定。trueで除外。
"blocks": [
"create:zinc_ore" 再生対象のブロックID
]
}
]
}
Future -今後について-
EN
Support for version 1.21.1 and porting to NeoForge are planned.
JP
1.21.1への対応とNeoForgeへの移植が計画されています。