Go to file
LoneWolfHT 885dc50638 Add credits 2021-01-23 10:01:52 -08:00
.github/workflows Fix luacheck looking for nonexistent dir 2021-01-23 09:45:56 -08:00
.luacheckrc Add 3d_armor to .luacheckrc 2021-01-23 10:01:52 -08:00
LICENSE The mod is reborn 2021-01-18 19:35:10 -08:00
README.md Add credits 2021-01-23 10:01:52 -08:00
api.lua Add 3d_armor fire protection support 2021-01-23 09:51:46 -08:00
depends.txt Add 3d_armor fire protection support 2021-01-23 09:51:46 -08:00
init.lua Check for extinguishing nodes only when on fire (#2) 2021-01-23 09:52:50 -08:00
mod.conf Add 3d_armor fire protection support 2021-01-23 09:51:46 -08:00
screenshot.png The mod is reborn 2021-01-18 19:35:10 -08:00
screenshot2.png The mod is reborn 2021-01-18 19:35:10 -08:00

README.md

Fire Plus

Build status ContentDB GitHub

Allows players to be lit on fire by various fire-related things.

Visuals include HUD effect and fire particles around player. You can put yourself out by jumping into water/snow.

Screenshot

Credits

  • Thanks to TenPlus1 for 3d_armor support and some other things

API

  • fire_plus.burn_player(player, burns, damage)
    • Sets player on fire and burns them burns times with damage damage every second
  • fire_plus.tnt_explode_radius
    • How close to a TNT node a player has to be to detonate it
  • fire_plus.ignition_nodes
    • Nodes that set players on fire. See the init.lua for examples
  • fire_plus.extinguishers
    • Nodes that put out burning players. See the init.lua for examples
  • Fire tools
    • You can allow modders to make tools light punched players on fire
    • Just set tool_capabilities.damage_groups.burns = <How much damage to do each burn>
    • There's also tool_capabilities.damage_groups.burn_time = <How many times to burn the player>