Custom Monster: Meet the Molt! (PLUS 30+ other slimes!!!)

Talk about creating Grimrock 1 levels and mods here. Warning: forum contains spoilers!
Post Reply
User avatar
Kuningas
Posts: 268
Joined: Wed Apr 11, 2012 10:29 pm
Location: Northern Finland

Custom Monster: Meet the Molt! (PLUS 30+ other slimes!!!)

Post by Kuningas »

Hello! This is now THE SLIME THREAD!


First up is the retexture by yours truly:

Nexus page here: http://grimrock.nexusmods.com/mods/43
SpoilerShow
Image
MOLT!
...who is basically just a fancy, heavily retextured, very angry slime. (But heavens no, don't tell him that!)
SpoilerShow
Image
I had to cage him the last time I did that...
Aand Here is Neikun's slimy work (or most of it, I'll try to keep up):
Neikun wrote:And the Prison of Slimes is finished! (I keep typing Prison of Smiles, damnit!)
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:
SpoilerShow
Image
SpoilerShow
Image
SpoilerShow
Image
SpoilerShow
Image
!Special!
Glow in the dark Slimes:
SpoilerShow
Image
SpoilerShow
Amber:Image
lightName scripts:
SpoilerShow

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,
Two other projects by Neikun (I found only screenshots for now -- will update link here once it is available)
SpoilerShow
Neikun wrote:Image
Something else I'm working on..
SpoilerShow
Image

If something about this is amiss, give me a holler.

UPDATED: Here is a short guide on slime (and basically any object's) glow, again courtesy of Neikun:
SpoilerShow
Neikun wrote:In order to get the glow for for the amber to look quite right, you're going to need to define the new material that is written there.

Code: Select all

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,
This goes in your material.lua
Next we open the amber_slime.MODEL in the Grimrock Model Toolkit.(GMT)
Select tools. Select settings. Make sure that the location of the asset pack and current dungeon are correct.
Select tools once again. Click Material Find/ Replace. Click the button that says Existing Material Name and select machine_part_orb
Click the box below it and type machine_part_orb_trans (like the new material you just defined)
Click replace material, then click close.
Select tools again. Click Reload Material Library. (probably not necessary, but I'm superstitious)
Next, save the model to the mod_assets/models/monsters folder
I would recommend saving it as amber_slime_trans so that you have both models.
Next, you will have to altar the model path in the amber_slime definition.
You need only change the model = line to have the path and name of your new amber model file.
If you did all these steps and added the lightName script for the amber_slime, everything should work out.

EDIT: Fun fact: The green_slime material is not translucent :o

NOTE: You can open any of the slime models in the GMT to find out what material I used. From there you can redefine the material used as I did above, set it to "Translucent" and continue on with the other steps.
Last edited by Kuningas on Tue Oct 16, 2012 2:53 pm, edited 7 times in total.
BASILEUS
User avatar
JohnWordsworth
Posts: 1397
Joined: Fri Sep 14, 2012 4:19 pm
Location: Devon, United Kingdom
Contact:

Re: Custom(ized) Monster: Meet the Molt!

Post by JohnWordsworth »

Haha, cool. Lava Slime - I approve. I can see a family of slimes appearing, not too much dislike D&D... Hehe.

I've got a suggestion for packaging custom assets which I posted in another thread, I'll just point to it for now, but I like the fact that it only requires 1 file edit for the end user to actually implement (and keeps all of the assets for a single 'custom item' or 'pack' in one place).

viewtopic.php?f=14&t=3602&p=37549#p37549
My Grimrock Projects Page with links to the Grimrock Model Toolkit, GrimFBX, Atlas Toolkit, QuickBar, NoteBook and the Oriental Weapons Pack.
Batty
Posts: 509
Joined: Sun Apr 15, 2012 7:04 pm

Re: Custom(ized) Monster: Meet the Molt!

Post by Batty »

That's a good one! I like the name too!
User avatar
Kuningas
Posts: 268
Joined: Wed Apr 11, 2012 10:29 pm
Location: Northern Finland

Re: Custom(ized) Monster: Meet the Molt!

Post by Kuningas »

JohnWordsworth wrote:Haha, cool. Lava Slime - I approve. I can see a family of slimes appearing, not too much dislike D&D... Hehe.

I've got a suggestion for packaging custom assets which I posted in another thread, I'll just point to it for now, but I like the fact that it only requires 1 file edit for the end user to actually implement (and keeps all of the assets for a single 'custom item' or 'pack' in one place).

viewtopic.php?f=14&t=3602&p=37549#p37549
EDIT: The right version is up, but someone here apparently downloaded the "old" version -- just make sure you don't overwrite your assets with it! I almost made a terrible mistake with the install instructions.
Last edited by Kuningas on Fri Oct 12, 2012 5:49 pm, edited 2 times in total.
BASILEUS
User avatar
Blichew
Posts: 157
Joined: Thu Sep 27, 2012 12:39 am

Re: Custom(ized) Monster: Meet the Molt!

Post by Blichew »

Looks really great, that one !
Don't forget do update the wiki @ http://grimwiki.net with it :)
User avatar
D@nzingtree
Posts: 9
Joined: Fri Oct 12, 2012 6:29 pm

Re: Custom(ized) Monster: Meet the Molt!

Post by D@nzingtree »

This looks good, did you already gave it a fire immunity?
I have a question which could fit to another custom slime, does somebody already tried to make a monster which spawns another mob after its death?
A more experienced modder could make a slime which can divide itself into 2 or 4 smaller slimes after it dies...
User avatar
Kuningas
Posts: 268
Joined: Wed Apr 11, 2012 10:29 pm
Location: Northern Finland

Re: Custom(ized) Monster: Meet the Molt!

Post by Kuningas »

D@nzingtree wrote:This looks good, did you already gave it a fire immunity?
I have a question which could fit to another custom slime, does somebody already tried to make a monster which spawns another mob after its death?
A more experienced modder could make a slime which can divide itself into 2 or 4 smaller slimes after it dies...
I have thought about the dividing, yes. But I've not tried -- I suppose it wouldn't be too hard...

And yeah, it is fire Immune, as well as assassination and backstabbing, (like regular slimes -- no back and they see in every direction).

Else statwise it is a bit tougher than a regular slime, but slower. Also hits quite hard -- no fire effect in that, though. (might add it if I update the file)
BASILEUS
User avatar
D@nzingtree
Posts: 9
Joined: Fri Oct 12, 2012 6:29 pm

Re: Custom(ized) Monster: Meet the Molt!

Post by D@nzingtree »

Cool^^,
Another twist probably nobody tried out yet, would be fire damage for the whole party if they squeeze the monster after falling into a pit.
It cant be healthy to land on a blob made of lawa.
User avatar
Wolfrug
Posts: 55
Joined: Wed Oct 03, 2012 6:56 pm

Re: Custom(ized) Monster: Meet the Molt!

Post by Wolfrug »

Beautiful! :D Always nice with some custom monstrosities. I'm still waiting for shock/ice/poison uggardians as well...
Try my Mordor: Depths of Dejenol LoG-ification. Feedback much appreciated!
User avatar
Neikun
Posts: 2457
Joined: Thu Sep 13, 2012 1:06 pm
Location: New Brunswick, Canada
Contact:

Re: Custom(ized) Monster: Meet the Molt!

Post by Neikun »

Very nicely done, friend.

EDIT: I'm creating a page for custom monsters as we speak.
"I'm okay with being referred to as a goddess."
Community Model Request Thread
See what I'm working on right now: Neikun's Workshop
Lead Coordinator for Legends of the Northern Realms Project
  • Message me to join in!
Post Reply