Skip to content

Latest commit

 

History

History
110 lines (89 loc) · 3.4 KB

README.md

File metadata and controls

110 lines (89 loc) · 3.4 KB

Euphoria Patches Properties Files

Welcome to the community-driven block.property files!

How to contribute

  • A Pull Request can be opened and the changes will be merged with Euphoria Patches.
  • The raw property file can also be shared on discord for those who have not worked with GitHub before

Please use the Template!
Please document mods in addedMods.md!

Template

At the top of each property file, there is a template on how new entries should look like

Click to expand for block.properties template!

Template for Modded Blocks:

# Description of the block ID
block.XXXXX = vanillaId1 vanillaId2 vanillaId3 ... \
\
modName1:modId1 modName1:modId2 modName1:modId3 ... \
\
modName2:modId1 modName2:modId2 modName2:modId3 ... \

# Description of the Next block ID
block.YYYYY = ...
...

--- IDs should be grouped by mods, for every new mod it should be added in a new line using "\" ---

Click to expand for item.properties template!

Template for Modded Items:

# Description of the item ID
item.XXXXX = vanillaId1 vanillaId2 vanillaId3 ... \
\
modName1:modId1 modName1:modId2 modName1:modId3 ... \
\
modName2:modId1 modName2:modId2 modName2:modId3 ... \

# Description of the Next item ID
item.YYYYY = ...
...

--- IDs should be grouped by mods, for every new mod it should be added in a new line using "\" ---

Click to expand for entity.properties template!

Template for Modded Entities:

# Description of the Entity ID
entity.XXXXX = vanillaId1 vanillaId2 vanillaId3 ... \
\
modName1:modId1 modName1:modId2 modName1:modId3 ... \
\
modName2:modId1 modName2:modId2 modName2:modId3 ... \

# Description of the Next Entity ID
entity.YYYYY = ...
...

--- IDs should be grouped by mods, for every new mod it should be added in a new line using "\" ---

Click to expand for dimension.properties template!

Template for Modded Dimensions:

dimension.world-1 = vanillaId1 vanillaId2 \
\
modName1:modId1 modName1:modId2 modName1:modId3 ... \
\
modName2:modId1 modName2:modId2 modName2:modId3 ... \

dimension.world1 = ...
...

--- IDs should be grouped by mods, for every new mod it should be added in a new line using "\" ---

This template was implemented so modded blocks can be easily added without having the risk of vanilla blocks being edited and one can easily see which mods are already supported as different mods are in different lines.

Documentating Changes

Once you've added your blocks, please go to addedMods.md and add what mod you've added with the appropriate status following this template.

Click to expand for addedmods.md template!

| [modName1](modLink) | Mod's Version | Mod's Added Status |

Also please keep this list alphebeticlly sorted!

Version

  • Each property file has an independent version system which increases when a vanilla component has been changed, it does not increase when the community has added modded entries
  • The properties files will always be up-to-date with the Euphoria Patches dev versions