Page 1 of 1

[Solved] Entity type for a decorative item with health?

Posted: Tue Mar 22, 2016 5:50 pm
by simonsays476
Hello, I'm making a mod to add decorative items. I'm stumped on what "type=" I should be using for an entity that has health, is user placeable, does absolutely nothing, and only has one graphic sprite. I've tried using the "simple-entity" which is used for the destructible rocks, but that requires multiple graphics. Any help would be greatly appreciated.

Re: Entity type for a decorative item with health?

Posted: Tue Mar 22, 2016 6:39 pm
by Rseding91
simonsays476 wrote:Hello, I'm making a mod to add decorative items. I'm stumped on what "type=" I should be using for an entity that has health, is user placeable, does absolutely nothing, and only has one graphic sprite. I've tried using the "simple-entity" which is used for the destructible rocks, but that requires multiple graphics. Any help would be greatly appreciated.
"simple-entity" can have either multiple graphics or a single image. Just define the image as "picture = ...".

Re: Entity type for a decorative item with health?

Posted: Tue Mar 22, 2016 6:56 pm
by simonsays476
Ah thank you, I was simply copying the data for the destructible rocks so I never would have known you could do that.