1
0
Fork
You've already forked fire_plus
0
[yams fork] Makes fire, lava and other flaming nodes a little more dangerous | Upstream: https://github.com/Dumpster-Studios/fire_plus
  • Lua 100%
2026年02月22日 19:30:53 -08:00
.github/workflows Fix luacheck looking for nonexistent dir 2021年01月23日 09:45:56 -08:00
textures Replace the overlay shown when the player is on fire 2024年04月20日 18:41:14 -07:00
.luacheckrc Add 3d_armor to .luacheckrc 2021年01月23日 10:01:52 -08:00
api.lua Remove a debug print line 2026年02月22日 19:30:53 -08:00
depends.txt Add 3d_armor fire protection support 2021年01月23日 09:51:46 -08:00
init.lua Do not let fire damage and node damage stack 2024年04月20日 17:39:41 -07:00
LICENSE Make minor changes to the LICENSE file 2024年10月23日 19:49:31 -07:00
mod.conf Add 3d_armor fire protection support 2021年01月23日 09:51:46 -08:00
README.md Add credits 2021年01月23日 10:01:52 -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

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>