Alex_Hupsch submitted a new mod: Toxic EPP - For swimming in toxic oceans and playing in acid rain! Read more about this mod...
Your player.config.patch is wrong: Code: [ { "op":"add", "path":"/defaultBlueprints/tier1/-", "value":{ "item" : "toxiceppback" } }, ] should be: Code: [ { "op":"add", "path":"/defaultBlueprints/tier1/-", "value":{ "item" : "toxiceppback" } } ] The metadata name should be _metadata not .metadata and the contents of the metadata also seems to be an old structure. Try this instead: Code: { "author" : "Your name here", "description" : "your description here", "name" : "name of the mod", "version" : "1.0" } This is a really short metadata there are more options. The item itself is missing the modifier for "stat" : "lanternglow" (should have amount, baseMultiplier or effectiveMultiplier in the statuseffect config for this stat) ~ Iris ~
This item is somewhat redundant, since a vanilla EPP with a poison resistance augment will allow you to swim in poison just fine. Doesn't stop the rain, but there's nothing interesting on the surface anyway.
When you're modding always check your starbound.log when something fails. It always holds information about what failed. Most common are simple syntax errors. (i often forget the "then" next to "if" when doing lua x) ) ~ Iris ~
Alex_Hupsch updated Toxic EPP with a new update entry: Fixed some basic syntax errors (missing commas) and now the mod is functional! Read the rest of this update entry...