[FND] Mob & some ideas

All development of pixel art, maps and other graphics.


User avatar
Mr.SlothFromSpace
Peon
Peon
Posts: 27
Joined: 22 Dec 2014, 21:57
Location: High In The Space - Portugal

[FND] Mob & some ideas

Post by Mr.SlothFromSpace »

Hey guys,

So as some of you already now i used to make some arts for the Brazillian server (now offline) and maybe you can use them here.

This is a mob I made
Spoiler:
Image
.xml
Spoiler:

Code: Select all

<?xml version="1.0"?>
<sprite>

	<imageset name="base" src="graphics/sprites/monsters/batholder.png|W;R" width="108" height="100" />

	<action name="stand" imageset="base">
		<animation direction="down">
			<sequence start="0" end="4" delay="50" offsetY ="0" />
		</animation>
		<animation direction="left">
			<sequence start="10" end="14" delay="50" offsetY ="0" />
		</animation>
		<animation direction="up">
			<sequence start="20" end="24" delay="50" offsetY ="0" />
		</animation>
		<animation direction="right">
			<sequence start="30" end="34" delay="50" offsetY ="0" />
		</animation>
	</action>

	<action name="attack" imageset="base">
		<animation direction="down">
			<sequence start="5" end="8" delay="50" offsetY ="0" />
			<end />
		</animation>
		<animation direction="left">
			<sequence start="15" end="18" delay="50" offsetY ="0" />
			<end />
		</animation>
		<animation direction="up">
			<sequence start="25" end="28" delay="50" offsetY ="0" />
			<end />
		</animation>
		<animation direction="right">
			<sequence start="35" end="38" delay="50" offsetY ="0" />
			<end />
		</animation>
	</action>

	<action name="dead" imageset="base">
		<animation>
			<frame index="9" offsetY ="0" delay="2500" />
		</animation>
	</action>

</sprite>
He's named BatHolder but if any of you have better name i'm willing to change it.

Something i would like to see in game is a custumized weapon system. Is it possible to have a working system like the Ring and Gems but with weapons? Like a Setzer ornamented with some rubies to get that +1 stg stat. Of couse we have to put some gem breaking percentage, just to keep it interesting.

And finaly, we are missing a Bow, the gap between the Forest Bow and the Banshee is to big... Maybe we can nerf the Forest to only 50 dmg and make a new quest for this one:
Image
new bow with 80 dmg

I hope you guys like it. Critics are well received =D

~Sorry for any grammatical or syntactic error~
4144
Knight
Knight
Posts: 965
Joined: 03 Aug 2009, 11:57

Re: [FND] Mob & some ideas

Post by 4144 »

Dead animation infinite playing. Now client autofixing it, but still bad.
In last frame in dead animation must be no delays.
I saw same error in other art in brasilian server.
User avatar
Cassy
TMW Adviser
TMW Adviser
Posts: 791
Joined: 09 Mar 2013, 09:39
Location: ♥ Fluffyland ♥
Contact:

Re: [FND] Mob & some ideas

Post by Cassy »

I'm a little busy right now so just leaving a note that with the Witch Cult Quest the Fairy Bow will be released which fills the whole between Forest Bow and Banshee Bow.
I would take the new bow into consideration when we balance the weapons.
Oh, and I like it! :D
Main characters:
Lv.94 - Cassy - speedarcher on dark path, bunny-wannabe, would like to ride on a Mouboo once...
Lv.95 - Biqcassy - mage on light path, addicted to her Fluffy Hat, love-hates Fallens, really misses Confused Tree...
Lv.70 - Simca. - dreams of becoming a speedarcher on light path, still has a lot to learn...

Personal development overview | priorities | wiki to-do | wiki profile incl. other characters

[20:24:59] <Cassy> debug npc in crypts!
[20:25:02] <Cassy> just a joke...
[20:25:08] <wushin> DONT DO THAT
[20:25:10] <o11c> !slap Cassy
User avatar
Cassy
TMW Adviser
TMW Adviser
Posts: 791
Joined: 09 Mar 2013, 09:39
Location: ♥ Fluffyland ♥
Contact:

Re: [FND] Mob & some ideas

Post by Cassy »

About the Batholder:

1.) Corrected xml file:
Spoiler:

Code: Select all

<?xml version="1.0"?>
<sprite>
   <imageset name="base" src="graphics/sprites/monsters/batholder.png" width="108" height="100" />
   <action name="stand" imageset="base">
      <animation direction="down">
         <sequence start="0" end="4" delay="50" offsetY="0"/>
      </animation>
      <animation direction="left">
         <sequence start="10" end="14" delay="50" offsetY="0"/>
      </animation>
      <animation direction="up">
         <sequence start="20" end="24" delay="50" offsetY="0"/>
      </animation>
      <animation direction="right">
         <sequence start="30" end="34" delay="50" offsetY="0"/>
      </animation>
   </action>
   <action name="attack" imageset="base">
      <animation direction="down">
         <sequence start="5" end="8" delay="50" offsetY="0"/>
         <end/>
      </animation>
      <animation direction="left">
         <sequence start="15" end="18" delay="50" offsetY="0"/>
         <end/>
      </animation>
      <animation direction="up">
         <sequence start="25" end="28" delay="50" offsetY="0"/>
         <end/>
      </animation>
      <animation direction="right">
         <sequence start="35" end="38" delay="50" offsetY="0"/>
         <end/>
      </animation>
   </action>
   <action name="dead" imageset="base">
      <animation>
         <frame index="9" offsetY="0"/>
      </animation>
   </action>
</sprite>
2.) License
TMW standard is GPLv2 & CC-BY-SA 3.0, this art is licensed under GPLv3.
Mr.SlothFromSpace already told me that he would agree with TMW's standard.
However, the second author is inactive...
How can this be handled?

3.) How it looks in game:
snapshot5.png
snapshot5.png (339.83 KiB) Viewed 8696 times
It does look good for sure, I'm just not sure if the style fits TMW.
It's pretty much 3D.
Feel free to discuss :D
Main characters:
Lv.94 - Cassy - speedarcher on dark path, bunny-wannabe, would like to ride on a Mouboo once...
Lv.95 - Biqcassy - mage on light path, addicted to her Fluffy Hat, love-hates Fallens, really misses Confused Tree...
Lv.70 - Simca. - dreams of becoming a speedarcher on light path, still has a lot to learn...

Personal development overview | priorities | wiki to-do | wiki profile incl. other characters

[20:24:59] <Cassy> debug npc in crypts!
[20:25:02] <Cassy> just a joke...
[20:25:08] <wushin> DONT DO THAT
[20:25:10] <o11c> !slap Cassy
User avatar
Mr.SlothFromSpace
Peon
Peon
Posts: 27
Joined: 22 Dec 2014, 21:57
Location: High In The Space - Portugal

Re: [FND] Mob & some ideas

Post by Mr.SlothFromSpace »

Hey once again,


@Cassy
Oh nice to see, i rly enjoy the Witch Cult so for. We need more dungeon like maps with final bosses (like the crypt with the General Krukan)

Regarding the Weapon and gems system thisis what i was talking about:
Image+ Image= Image

each gem would have is own glow.

And also we can use the Setzer sprite (Not my work)
Spoiler:
Image
And regarding the Batholder being GPLv3 i agree with the TMW's standard to use the licenses GPLv2 & CC-BY-SA 3.0, please list me as Mr.SlothFromSpace & FeuzZ as the authors.
User avatar
EJlol
TMW Furniture
TMW Furniture
Posts: 1224
Joined: 06 Sep 2005, 08:42

Re: [FND] Mob & some ideas

Post by EJlol »

Cassy wrote:About the Batholder:

1.) Corrected xml file:
Spoiler:

Code: Select all

<?xml version="1.0"?>
<sprite>
   <imageset name="base" src="graphics/sprites/monsters/batholder.png" width="108" height="100" />
   <action name="stand" imageset="base">
      <animation direction="down">
         <sequence start="0" end="4" delay="50" offsetY="0"/>
      </animation>
      <animation direction="left">
         <sequence start="10" end="14" delay="50" offsetY="0"/>
      </animation>
      <animation direction="up">
         <sequence start="20" end="24" delay="50" offsetY="0"/>
      </animation>
      <animation direction="right">
         <sequence start="30" end="34" delay="50" offsetY="0"/>
      </animation>
   </action>
   <action name="attack" imageset="base">
      <animation direction="down">
         <sequence start="5" end="8" delay="50" offsetY="0"/>
         <end/>
      </animation>
      <animation direction="left">
         <sequence start="15" end="18" delay="50" offsetY="0"/>
         <end/>
      </animation>
      <animation direction="up">
         <sequence start="25" end="28" delay="50" offsetY="0"/>
         <end/>
      </animation>
      <animation direction="right">
         <sequence start="35" end="38" delay="50" offsetY="0"/>
         <end/>
      </animation>
   </action>
   <action name="dead" imageset="base">
      <animation>
         <frame index="9" offsetY="0"/>
      </animation>
   </action>
</sprite>
2.) License
TMW standard is GPLv2 & CC-BY-SA 3.0, this art is licensed under GPLv3.
Mr.SlothFromSpace already told me that he would agree with TMW's standard.
However, the second author is inactive...
How can this be handled?

3.) How it looks in game:
Spoiler:
snapshot5.png
It does look good for sure, I'm just not sure if the style fits TMW.
It's pretty much 3D.
Feel free to discuss :D
It's missing texture. To improve the bat read http://opengameart.org/content/chapter- ... -dithering
Also the shadow needs some work to fit with the other sprites.
User avatar
Cassy
TMW Adviser
TMW Adviser
Posts: 791
Joined: 09 Mar 2013, 09:39
Location: ♥ Fluffyland ♥
Contact:

Re: [FND] Mob & some ideas

Post by Cassy »

EJlol wrote:It's missing texture. To improve the bat read http://opengameart.org/content/chapter- ... -dithering
Also the shadow needs some work to fit with the other sprites.
@Mr.SlothFromSpace: Will you check that?
Thanks EJlol ;)

Edit: Also love the Setzer sprite.
Again we need to know Author + license :?
Main characters:
Lv.94 - Cassy - speedarcher on dark path, bunny-wannabe, would like to ride on a Mouboo once...
Lv.95 - Biqcassy - mage on light path, addicted to her Fluffy Hat, love-hates Fallens, really misses Confused Tree...
Lv.70 - Simca. - dreams of becoming a speedarcher on light path, still has a lot to learn...

Personal development overview | priorities | wiki to-do | wiki profile incl. other characters

[20:24:59] <Cassy> debug npc in crypts!
[20:25:02] <Cassy> just a joke...
[20:25:08] <wushin> DONT DO THAT
[20:25:10] <o11c> !slap Cassy
User avatar
wushin
TMW Adviser
TMW Adviser
Posts: 1759
Joined: 18 Dec 2012, 05:56
Location: RiverBest, Brew City, Merica
Contact:

Re: [FND] Mob & some ideas

Post by wushin »

Well you could also make the drop shadow re-colorable via the dye system. It could be easily attached to any of the weapons to some extent as well.
The secret to getting all the important stuff done is doing nothing.
User avatar
Mr.SlothFromSpace
Peon
Peon
Posts: 27
Joined: 22 Dec 2014, 21:57
Location: High In The Space - Portugal

Re: [FND] Mob & some ideas

Post by Mr.SlothFromSpace »

I based the texture of he Batholder in the one already in game.
As you can see the current bat dosen't have much texture either.
Image

Can I use the example of the wolf for a fur texture?
Image

@Cassy I stopped working with pixel almost 3 years ago, I may be a little rusty but i'll give it a try :D

Edit.
I gave it a try and used the texture of the wolf as reference...
Image
I end up with a rock with wings lol where did i messed up?
User avatar
Crush
TMW Adviser
TMW Adviser
Posts: 8046
Joined: 25 Aug 2005, 16:08
Location: Germany

Re: [FND] Mob & some ideas

Post by Crush »

Mr.SlothFromSpace wrote:I gave it a try and used the texture of the wolf as reference...
Image
I end up with a rock with wings lol where did i messed up?
Give it a more polygonal shape and you have an interesting new moster ;) (albeit a completely unrelated one).
  • former Manasource Programmer
  • former TMW Pixel artist
  • NOT a game master

Please do not send me any inquiries regarding player accounts on TMW.


You might have heard a certain rumor about me. This rumor is completely false. You might also have heard the other rumor about me. This rumor is 100% accurate.
User avatar
wushin
TMW Adviser
TMW Adviser
Posts: 1759
Joined: 18 Dec 2012, 05:56
Location: RiverBest, Brew City, Merica
Contact:

Re: [FND] Mob & some ideas

Post by wushin »

I had a near similiar creation (granted we can't use the name beholder cause Wizards of the Coast suck)

But the body could be more like this.
Attachments
beholder-unmerged-3.png
beholder-unmerged-3.png (3.77 KiB) Viewed 8629 times
The secret to getting all the important stuff done is doing nothing.
User avatar
Mr.SlothFromSpace
Peon
Peon
Posts: 27
Joined: 22 Dec 2014, 21:57
Location: High In The Space - Portugal

Re: [FND] Mob & some ideas

Post by Mr.SlothFromSpace »

@Wushin
The Br server had a monster similar to that one, but i don't have acess to the forums.

I'll use the fur of the Yeti as a stat up base for the texture, wish me luck :D

And now some of the work i was able to retrive from the br arquives.

An indigenous shield sprite made by Ryanzinho:
Spoiler:
Image
Tomawawk sprite made by Ryanzinho:
Spoiler:
Image
´

A mob made by Catchup:
Spoiler:
Image
Double daggers made by Catchup:
Spoiler:
Image
I hope you guys like it
User avatar
o11c
Grand Knight
Grand Knight
Posts: 2262
Joined: 20 Feb 2011, 21:09
Location: ^ ^

Re: [FND] Mob & some ideas

Post by o11c »

Beholder is copyrighted, we can't use anything derived from it.
Former programmer for the TMWA server.
User avatar
wushin
TMW Adviser
TMW Adviser
Posts: 1759
Joined: 18 Dec 2012, 05:56
Location: RiverBest, Brew City, Merica
Contact:

Re: [FND] Mob & some ideas

Post by wushin »

no we can't use the name, the monster exists in mythology under various other names. Beholder is soley the name of the one D&D picked.

For reference checkout "Big Trouble in Little China".
The secret to getting all the important stuff done is doing nothing.
User avatar
Reid
Lead Developer (SoM)
Lead Developer (SoM)
Posts: 1549
Joined: 15 May 2010, 21:39
Location: Artis
Contact:

Re: [FND] Mob & some ideas

Post by Reid »

Mr.SlothFromSpace wrote:I based the texture of he Batholder in the one already in game.
As you can see the current bat dosen't have much texture either.
Image
Texture != Dithering,
This bat use its palette and light reflection to create texture, in short it's a good thing to do when your sprite is small.
Mr.SlothFromSpace wrote:Can I use the example of the wolf for a fur texture?
Image
That fits TMW's style, but the fur texture is a fur texture, not a ball texture.
Mr.SlothFromSpace wrote:I gave it a try and used the texture of the wolf as reference...
Image
I end up with a rock with wings lol where did i messed up?
You copied the fur texture and applied a light effect to it, that's maybe a way to do it in 3D but here you can't do it that easily.
The best way would be to do a texture by hand, a less sharp one.
Try to reduce the contrast in some area to reduce the rock effect, try to do these change by hand, using many tools is a bad habit for pixel art starters.
(Also, like Crush pointed out, don't use a too circular shape, the more form your monster will have, the most interesting it will be.)

A link for you if you want to progress: http://opengameart.org/content/chapter- ... -dithering
"Time is an illusion. Lunchtime doubly so."
-- Ford Prefect
Post Reply