http://youtu.be/n3307gOV_DQ
I am going to make the .rar and example slimes.lua file
The song is called "Gone" I made it myself owo
Download link:
http://grimrock.nexusmods.com/mods/49
To use:
In the mod_assets/models folder, create a folder named monsters. Unrar all model files there.
In the mod_assets/scripts folder, unrar the slimes.lua file.
Edit the init.lua to import the slimes.lua
Images:
Glow in the dark Slimes:
Code: Select all
-- Ice Slime
lightName = "light",
lightColor = vec(0.3, 1.0, 2.4),
lightBrightness = 6,
lightRange = 4,
Code: Select all
-- Red Slime
lightName = "light",
lightColor = vec(3.0, 0, 0.3),
lightBrightness = 6,
lightRange = 3,
Code: Select all
--Material for glowing amber_slime
defineMaterial{
name = "machine_part_orb_trans",
diffuseMap = "assets/textures/items/machine_part_orb_dif.tga",
specularMap = "assets/textures/items/machine_part_orb_spec.tga",
doubleSided = false,
lighting = true,
alphaTest = false,
blendMode = "Translucent",
textureAddressMode = "Wrap",
glossiness = 20,
depthBias = 0,
}
Code: Select all
--light for amber_slime
lightName = "light",
lightColor = vec(3.0, 1.0, 0.4),
lightBrightness = 6,
lightRange = 3,