Page 13 of 24

Re: The Enemy Respositorium

Posted: 20 Jun 2014, 02:44
by Danny
SOMEONE PLEASE MAKE A PORTAL TURRENT ENEMY!!!!!!!!!!!!!!!!!

Re: The Enemy Respositorium

Posted: 20 Jun 2014, 06:08
by faves3000
Danny wrote:SOMEONE PLEASE MAKE A PORTAL @ TURRENT ENEMY!!!!!!!!!!!!!!!!!
That... doesn't make much sense.

Re: The Enemy Respositorium

Posted: 20 Jun 2014, 06:15
by idiot9.0
He wants one of these:
Image
And regardless I don't think it's going to be made anytime soon anyway. Given the fact he also asked kind of terribly.

Re: The Enemy Respositorium

Posted: 20 Jun 2014, 15:04
by Danny
sorry,

please someone make this enemy, im not experienced enough with .json to make it myself

Re: The Enemy Respositorium

Posted: 21 Jun 2014, 00:14
by HansAgain
dude, just put

Code: Select all

base=[the name of the enemy you want to copy]
{
}
and put it the same name as your image if you want only to change the appearance of an existing enemy.
If you want to change some of its properties you just have to write some properties inside of the "{ }", remember to use a comma to separate them.
E.g.:
Hans1998 wrote: Two-frame'd goomba:
Image

Code: Select all

base=goomba

{
"quadcount": 3,
"animationtype": "frames",
"animationspeed": 0.2,
"animationstart": 1,
"animationframes": 2,

"nospritesets": false,
"stompedFrame": 3
}
Where:
"quadcount": 3 means that it has three frames horizontaly.
"animationtype": "frames" means that it use frames, you can put "mirror" to use only one frame (as goombas does) and "none" when you want it to not be animated.
"animationspeed": 0.2 means that each frame will took 0.2 seconds to change.
"animationstart": 1 means that the first frame will be the first frame of the animation.
"animationframes": 2 means that the second frame is the last frame of the animation and then it will go back to the first frame.
"nospritesets": false means that it will have spritesets, and graphic will vertically split for the 4 spritesets.
"stompedFrame": 3 means that the third frame will appear when you stomp him.
If you don't know how to make it, it's because you don't want to.

There is more info about it in here

Re: The Enemy Respositorium

Posted: 21 Jun 2014, 00:18
by Danny
I'll see what i can do but im not sure how to do certain things like for example, i want the turret to do damage to Mario but not kill him in one hit, what boolean would i use for that?

Re: The Enemy Respositorium

Posted: 21 Jun 2014, 00:26
by HansAgain
There is no option for that, sorry.
But you can make it shoot bullets every 5 seconds or something like that.

Re: The Enemy Respositorium

Posted: 21 Jun 2014, 01:38
by Danny
i have another question about custom enemy graphics, how do i decide the frame size in pixels?

Re: The Enemy Respositorium

Posted: 21 Jun 2014, 01:49
by HansAgain
The size of the frames are decided by the options "quadcount" and "nospritesets", there is no specific option to set the size of the frames.
"quadcount" will vertically split the image of the enemy based on the number you write, if you write three and the image has 48 pixels width, the frames will have 16 pixels of widht.
"nosrpitesets" will vertically split the image in 4, so if your image it's 64 pixels height, the height of the frames will be 16 (64/4 = 16)

Re: The Enemy Respositorium

Posted: 21 Jun 2014, 02:02
by Danny
i tried it on the this tank enemy i am makeing

Code: Select all

{
	"quadcount": 1,

	"animationtype": "frames",
	"animationframes": 1,
	"animationstart": 1,
	"animationspeed": 0.2,
	
	"stompable": false,
	"killsonsides": false,
	"killsonbottom": false,
	
	"movement": "follow",
	"followspace": 1,
	"distancetime": 0,
	"truffleshufflespeed": 2,
	"truffleshuffleacceleration": 2,

	"ResistsFire": true,
	
	"spawnsenemy": "bulletbill",
	"spawnenemydelays": [1.6, 2.6],
	"spawnenemyoffsety": -1,
	"spawnenemyoffsetx": -1,
	"spawnenemytowardsplayer": true,
	"spawnenemyspeed": 8,

	"width": 2.25,
	"height": 2.25,
	"static": false,
	"active": true,
	"category": 2,
	"nospritesets": true,
	"KilledByBoxes": true,
	"mask": [	true, 
				false, false, false, false, true,
				false, true, false, true, false,
				false, false, false, false, false,
				true, true, false, false, true,
				false, true, true, false, false,
				true, false, true, true, true],
				
	"emancipatecheck": true,
	"autodelete": true,
	"smallquad": 3,
	
	"offsetx": 12,
	"offsety": -18,
	"quadcenterX": 16,
	"quadcenterY": 38
}



it gave me this error
Image

Re: The Enemy Respositorium

Posted: 24 Jun 2014, 05:36
by surface-2-air missle
Hey, How do apply the new enemy.lua?

Re: The Enemy Respositorium

Posted: 24 Jun 2014, 14:08
by alesan99
Drag the enemy.lua into mario SE
or
Open mario se with an archiver (winRAR, 7zip, etc.) and replace the enemy.lua inside it with the new one.

Re: The Enemy Respositorium

Posted: 24 Jun 2014, 17:56
by TurretBot
put it in your mari0 se folder, outside the mappacks (and characters) folder.

Re: The Enemy Respositorium

Posted: 30 Jun 2014, 03:31
by surface-2-air missle
Can someone make a tile that falls when you get near it?
I'm not the best at making enemies.

Re: The Enemy Respositorium

Posted: 30 Jun 2014, 08:01
by 0>0
you mean an enemy like the Thwomp,turret made it just go to here.

Re: The Enemy Respositorium

Posted: 30 Jun 2014, 21:02
by surface-2-air missle
I meant A block that falls and doesn't go back up. Also, you have to get near it.
I'm pretty sure the new enemy lua has a transform trigger that can do that.

Re: The Enemy Respositorium

Posted: 11 Jul 2014, 03:21
by Danny
makeing dig dug enemies



here is one that i have finished
Pooka:Image

Code: Select all

{
	"quadcount": 3,

	"movement": "truffleshuffle",
	"stompable": true,
	"killsonbottom": true,
	"killsonsides": true,
	
	"animationtype": "frames",
	"animationframes": 2,
	"animationstart": 1,
	"animationspeed": 0.2,
	
	"stompanimation": true,
	"stompanimationtime": 0.5,
	"stompedframe": 3,
	
	"truffleshufflespeed": 2,
	"truffleshuffleacceleration": 8,
	
	"quadno": 1,
	
	"width": 0.75,
	"height": 0.75,
	
	"static": false,
	"active": true,
	
	"category": 4,
	
	"mask": [	true, 
				false, false, false, false, true,
				false, true, false, true, false,
				false, false, false, false, false,
				true, true, false, false, false,
				false, true, true, false, false,
				true, false, true, true, true],
					
	
	"emancipatecheck": true,
	"autodelete": true,
	
	"offsetX": 6,
	"offsetY": 3,
	"quadcenterX": 8,
	"quadcenterY": 8
}
i need a bit of help with this one
i cant figure out how to get the prep frame (frame 3) to start before the fire spawn and get the stop frame (frame four) to activate when stomped on

Frygar:Image

Code: Select all

{
	"quadcount": 4,

	"movement": "wiggle",
	"wiggledistance": 1,
	"wigglespeed": 1.5,
	"speedx": -1.5,
	
	"facesplayer": false,
	"resistsfire": true,
	"stompable": true,
	"killsonsides": true,
	"killsonbottom": true,
	
	"animationtype": "frames",
	"animationframes": 2,
	"animationstart": 1,
	"animationspeed": 0.2,
	
	"quadno": 1,
	
	"width": 0.75,
	"height": 0.75,
	

	
	"static": false,
	"active": true,
	
	"category": 5,
	
	"mask": [	true, 
				false, false, false, false, true,
				false, true, false, true, false,
				false, false, false, false, false,
				true, true, false, false, true,
				false, true, true, false, false,
				true, false, true, true, true],
	"emancipatecheck": true,
	"autodelete": true,
	
	"offsetX": 6,
	"offsetY": 8,
	"quadcenterX": 8,
	"quadcenterY": 21,
	

	"stompanimation": true,
	"stompanimationtime": 0.5,
	"stompedframe": 4,

	"spawnsenemy": "fire",
	"spawnenemydelays": [3.0, 4.0],
	"spawnenemyspeedy": -8,
	"spawnenemyspeedx": -4,
	"spawnenemyoffsety": -1,

	"throwquadoffset": 2,
	"throwpreparetime": 0.5,

	
	"ignorefaithplates": true
}

Re: The Enemy Respositorium

Posted: 11 Jul 2014, 10:46
by HowToEatGirafes
I can help you for frame 4 just put :

Code: Select all

stompable = true
stompanimation = true
stompanimationtime (optional)
stompedframe = "4"

Re: The Enemy Respositorium

Posted: 11 Jul 2014, 12:17
by Mr.Q.Marx?
Danny wrote: i cant figure out how to get the prep frame (frame 3) to start before the fire spawn and get the stop frame (frame four) to activate when stomped on

Code: Select all

...
"throwquadoffset": 2,
...

Code: Select all

"throwquadoffset": 3,

Re: The Enemy Respositorium

Posted: 12 Jul 2014, 00:06
by Danny
it still crashes the game, this is the new code

Code: Select all

{
	"quadcount": 4,

	"movement": "wiggle",
	"wiggledistance": 1,
	"wigglespeed": 1.5,
	"speedx": -1.5,
	
	"facesplayer": false,
	"resistsfire": true,
	"stompable": true,
	"killsonsides": true,
	"killsonbottom": true,
	
	"animationtype": "frames",
	"animationframes": 2,
	"animationstart": 1,
	"animationspeed": 0.2,
	
	"quadno": 1,
	
	"width": 0.75,
	"height": 0.75,
	

	
	"static": false,
	"active": true,
	
	"category": 5,
	
	"mask": [	true, 
				false, false, false, false, true,
				false, true, false, true, false,
				false, false, false, false, false,
				true, true, false, false, true,
				false, true, true, false, false,
				true, false, true, true, true],
	"emancipatecheck": true,
	"autodelete": true,
	
	"offsetX": 6,
	"offsetY": 8,
	"quadcenterX": 8,
	"quadcenterY": 21,
	

	"throwquadoffset": 3,


	stompanimation = true,
	stompanimationtime (optional),
	stompedframe = "4",

	"spawnsenemy": "fire",
	"spawnenemydelays": [3.0, 4.0],
	"spawnenemyspeedy": -8,
	"spawnenemyspeedx": -4,
	"spawnenemyoffsety": -1,



	
	"ignorefaithplates": true
}

Re: The Enemy Respositorium

Posted: 12 Jul 2014, 00:26
by alesan99
Danny wrote:

Code: Select all

	stompanimation = true,
	stompanimationtime (optional),
	stompedframe = "4",
This doesn't match the rest of the code at all.

Re: The Enemy Respositorium

Posted: 12 Jul 2014, 02:58
by Danny
the fourth frame is suppose to be the stomped animation

Re: The Enemy Respositorium

Posted: 12 Jul 2014, 02:59
by Mari0Maker
I think he means change it to something like this:

Code: Select all

   "stompanimation": = true,
   "stompanimationtime": 0.5,
   "stompedframe": = 4,

Re: The Enemy Respositorium

Posted: 12 Jul 2014, 03:04
by HansAgain
Still wrong, you need to write this:

Code: Select all

   "stompanimation": true,
   "stompanimationtime": 0.5,
   "stompedframe": 4,
The "=" shouldn't be there, the code reads ":", also the numbers are numbers, not words, so they don't use "".

Re: The Enemy Respositorium

Posted: 12 Jul 2014, 04:00
by Danny
Hans1998 wrote:Still wrong, you need to write this:

Code: Select all

   "stompanimation": true,
   "stompanimationtime": 0.5,
   "stompedframe": 4,
The "=" shouldn't be there, the code reads ":", also the numbers are numbers, not words, so they don't use "".


ok, it helped a bit, it doesn't crash when i open the editor but it crashes on the enemy screen

i updated the code a bit though

Code: Select all

{
	"quadcount": 4,

	"movement": "truffleshuffle",
	"truffleshufflespeed": 2,
	"truffleshuffleacceleration": 2,
	

	"resistsfire": true,
	"stompable": true,
	"killsonsides": true,
	"killsonbottom": true,
	
	"animationtype": "frames",
	"animationframes": 2,
	"animationstart": 1,
	"animationspeed": 0.2,
	
	"quadno": 1,
	
	"width": 0.75,
	"height": 0.75,
	

	
	"static": false,
	"active": true,
	
	"category": 5,
	
	"mask": [	true, 
				false, false, false, false, true,
				false, true, false, true, false,
				false, false, false, false, false,
				true, true, false, false, true,
				false, true, true, false, false,
				true, false, true, true, true],
	"emancipatecheck": true,
	"autodelete": true,
	
	"offsetX": 1,
	"offsetY": 1,
	"quadcenterX": 7,
	"quadcenterY": 7,
	

	"throwquadoffset": 3,


  "stompanimation": true,
   "stompanimationtime": 0.5,
   "stompedframe": 4,

	"spawnsenemy": "fire",
	"spawnenemydelays": [3.0, 4.0],
	"spawnenemyspeedy": -8,
	"spawnenemyspeedx": -4,
	"spawnenemyoffsety": -1,



	
	"ignorefaithplates": true
}

Re: The Enemy Respositorium

Posted: 12 Jul 2014, 15:36
by Assasin-Kiashi
I made these two sprites AGES ago but i never knew how to use them, so if you feel like it, you can maybe go ahead and do something nice with them:
Image
Image

Re: The Enemy Respositorium

Posted: 17 Jul 2014, 03:42
by craftershaft
Reposting from SuperJustinBros' deviantart so that nobody has to go there:
i have requests for mari0 enemies: some of these http://www.hrwiki.org/wiki/Stinkoman_20 ... _and_Items and also bowser's helmet mario http://www.mariowiki.com/images/d/d9/OhBrother.jpg and here is how bowser helmet mario works: does not walk off edges, transforms into normal mario after 10 stomps, has a wrench sword, and can't be killed with fireballs.


I know your gonna say "welcome to the forums", right?
but i have been reading the forums as a guest before

Re: The Enemy Respositorium

Posted: 17 Jul 2014, 03:55
by Sunset_Moth
But you've just been watching, not posting. So, yeah, I am going to say...
WELCOME
TO THE FORUMS!

Re: The Enemy Respositorium

Posted: 17 Jul 2014, 04:31
by craftershaft
bubba_nate wrote:But you've just been watching, not posting. So, yeah, I am going to say...
WELCOME
TO THE FORUMS!
Now someone has to make a real response...

Re: The Enemy Respositorium

Posted: 17 Jul 2014, 11:59
by Mr.Q.Marx?
Do you expect Mario to use the sword?

Re: The Enemy Respositorium

Posted: 17 Jul 2014, 16:15
by craftershaft
Yes.

Re: The Enemy Respositorium

Posted: 17 Jul 2014, 23:38
by Danny
Mr.Q.Marx? wrote:Do you expect Mario to use the sword?
craftershaft wrote:Yes.




please elaborate on exactly how you want that to happen

Re: The Enemy Respositorium

Posted: 17 Jul 2014, 23:44
by craftershaft
when bowser helmet mario is close to the player, he will slash his sword up and down.

Re: The Enemy Respositorium

Posted: 18 Jul 2014, 02:11
by Danny
that sounds cool

Re: The Enemy Respositorium

Posted: 18 Jul 2014, 07:10
by MissingWorld
craftershaft wrote:when bowser helmet mario is close to the player, he will slash his sword up and down.
That isn't exactly possible with how enemies work.

Re: The Enemy Respositorium

Posted: 18 Jul 2014, 13:16
by craftershaft
well... just make his sword slash in a way that's possible.

Re: The Enemy Respositorium

Posted: 20 Jul 2014, 23:38
by Sky
Image

Who ordered a Monty Mole? Anyone? Just me? Click the picture if you want it!
Sprites by AwesomeZack, so credit him if you don't reskin.

Re: The Enemy Respositorium

Posted: 21 Jul 2014, 01:07
by Danny
a few enemies i made


car
Image

Code: Select all

{
	"quadcount": 3,

	"animationtype": "frames",
	"animationframes": 3,
	"animationstart": 1,
	"animationspeed": 0.2,
	

	
	"stompable": false,
	"killsonsides": true,
	"killsonbottom": true,
	

	
	"movement": "truffleshuffle",
	"truffleshufflespeed": 4,
	"truffleshuffleacceleration": 8,
	
	"width": 1.8,
	"height": 1.3,
	"static": false,
	"active": true,
	"category": 5,
	
	"mask": [	true, 
				false, false, false, false, true,
				false, true, false, true, false,
				false, false, false, false, false,
				true, true, false, false, true,
				false, true, true, false, false,
				true, false, true, true, true],
				
	"emancipatecheck": true,
	"autodelete": true,
	"smallquad": 3,
	
	"offsetx": 12,
	"offsety": -7,
	"quadcenterX": 24,
	"quadcenterY": 13
}
microbill
Image

Code: Select all

{
	"quadcount": 1,
	
	"spawnoffsety": -0.0625,

	"movement": "none",
	"killsontop": false,
	"killsonsides": false,
	
	"stompable": true,
	"stompcombosuppressor": true,
	
	"speedx": 4,
	"starttowardsplayerhorizontal": true,
	

	

	
	"quadno": 1,
	
	"width": 0.375,
	"height": 0.375,
	
	"static": false,
	"active": true,
	

	"gravity": 0,
	
	"category": 11,
	"mask": [	true, 
				true, false, true, true, true,
				true, true, true, true, true,
				true, true, true, true, true,
				true, true, true, true, true,
				true, true, true, true, true,
				true, true, true, true, true],
				
	
	"emancipatecheck": true,
	"autodelete": true,
	
	"offsetX": 3,
	"offsetY": 3,
	"quadcenterX": 3,
	"quadcenterY": 3
}
micro koopa (couldn't get shell to work properly, but if someone could edit the code to fix it that would be apriciated)
Image

Code: Select all

{
	"quadcount": 3,
	
	"spawnoffsety": -0.0625,

	"animationtype": "frames",
	"animationframes": 2,
	"animationstart": 1,
	"animationspeed": 0.2,
	"killsontop": false,
	"killsonsides": false,

	"wakesup": true,
	"wiggletime": 1,
	"resettime": 5.2,
	"wiggledelay": 0.1,
	
	"stompable": true,
	"stompcombosuppressor": true,
	
	"speedx": 4,
	"starttowardsplayerhorizontal": true,
	
	

	"movement": "truffleshuffle",
	"truffleshufflespeed": 1,
	"truffleshuffleacceleration": 4,

	

	
	"width": 0.375,
	"height": 0.375,
	
	"static": false,
	"active": true,
	

	
	
	"gravity": 5,
	
	"category": 11,

	"mask": [	true, 
				false, false, false, false, true,
				false, true, false, true, false,
				false, false, false, false, false,
				true, true, false, false, true,
				false, true, true, false, false,
				true, false, true, true, true],
				
	"emancipatecheck": true,
	"autodelete": true,
	
	"smallquad": 3,
	
	"offsetX": 3,
	"offsetY": 3,
	"quadcenterX": 4,
	"quadcenterY": 7
}
missilebill
Image

Code: Select all

{
   "quadcount": 1,
   
   "spawnoffsety": -0.0625,

   "movement": "none",
   "killsontop": true,
   "killsonsides": true,
   
   "stompable": true,
   "stompcombosuppressor": true,
   
   "speedx": 8,
   "starttowardsplayerhorizontal": true,
      "quadno": 1,
   
   "width": 1,
   "height": 0.875,
   
   "static": false,
   "active": true,

   "gravity": 0,
   
   "mask": [   true, 
            true, false, true, true, true,
            true, true, true, true, true,
            true, true, true, true, true,
            true, true, true, true, true,
            true, true, true, true, true,
            true, true, true, true, true],
            
   
   "emancipatecheck": true,
   "autodelete": true,
   
   "offsetX": 8,
   "offsetY": 1,
   "quadcenterX": 8,
   "quadcenterY": 8,
   
   "spawnsenemy": "missilebill",
   "spawnenemydelays": [0.8],
   "spawnenemytowardsplayer": true,
    "spawnenemyspeed": 8,
   "lifetime": 0.85,
   "spawnsound": "fire"
}
sonicworldpowerup
Image

Code: Select all

{
	"quadcount": 2,


	"stompable": true,

	

	
	"stompanimation": true,
	"stompanimationtime": 0.5,
	"stompedframe": 2,
	
	"transforms": true,
	"transformtrigger": "stomp",
	"transformsinto": "flower",
	
	"quadno": 1,
	
	"width": 0.75,
	"height": 0.75,
	
	"static": true,

	
	"category": 4,
	
	"mask": [	true, 
				false, false, false, false, true,
				false, true, false, true, false,
				false, false, false, false, false,
				true, true, false, false, false,
				false, true, true, false, false,
				true, false, true, true, true],
					
	
	"emancipatecheck": true,
	"autodelete": true,
	
	"offsetX": 6,
	"offsetY": 3,
	"quadcenterX": 12,
	"quadcenterY": 18
}
credit is optional, its appreciated but you dont have to reference me if you dont want to

Re: The Enemy Respositorium

Posted: 21 Jul 2014, 04:11
by craftershaft
craftershaft wrote:well... just make his sword slash in a way that's possible.
And all these days I thought the long wait meant you guys were going to make it... sob

Re: The Enemy Respositorium

Posted: 28 Jul 2014, 04:21
by craftershaft
Hello?

Re: The Enemy Respositorium

Posted: 28 Jul 2014, 04:26
by B-Man99
Hi...?

Re: The Enemy Respositorium

Posted: 28 Jul 2014, 16:36
by HowToEatGirafes
can someone can make some dinosaurs please?

Re: The Enemy Respositorium

Posted: 28 Jul 2014, 18:50
by Danny
HowToEatGirafes wrote:can someone can make some dinosaurs please?
kinda like this:
Image
thats the "page cannot be reached" chrome dinosaur and it has great potential considering its already 8-bit





also i edited glados (originally made by HugoBDesigner) as whell as made a wheatlyglados entity, this requires you to already have the explosion and bobomb hit enemies
Image
Image

Code: Select all

{
	
	"spawnsenemy": "bobombhit",
	"spawnenemydelays": [0.4, 1],
	"spawnenemytowardsplayer": true,
	"spawnenemyspeed": 10,
	"spawnenemyoffsety": -1,
	"spawnenemyoffsetx": -1,
	
	"ThrowPrepareTime": 1,
	"ThrowQuadOffset": 2,
	
	

	
	"movement": "follow",
	"followspace": 2,
	"distancetime": 0,
	"truffleshufflespeed": 4,
	"truffleshuffleacceleration": 8,
	
	"animationtype": "none",
	"quadcount": 1,
	"nospritesets": true,
	
	"spawnoffsetX": 3,
	"spawnoffsetY": 5,
	"Width": 6,
	"Height": 6,
	"offsetX": 48,
	"offsetY": 5,
	"quadcenterX": 48,
	"quadcenterY": 3,
	
	"gravity": 0,
	"active": true,
	"static": false,
	"category": 1,
	"mask": [	true,
				true, true, true, true, true,
				true, true, true, true, true,
				true, true, true, true, true,
				true, true, true, true, true,
				true, true, true, true, true,
				true, true, true, true, true],
				
	"portalable": false,
	"emancipatecheck": true,
	"laserresistant": false,
	"facesplayer": true,
	"resistsfire": true,
	"resistsstar": true,
	"resistsspikes": true
}
they both use the same code
heres the bobomb just in case you dont have it
bobomb
Image

Code: Select all

{
	"quadcount": 2,

	"animationtype": "frames",
	"animationframes": 2,
	"animationstart": 1,
	"animationspeed": 0.2,
	
	"nospritesets": true,
	
	"killsonsides": true,
	"killsonbottom": true,
	"stompable": true,
	
	"movement": "truffleshuffle",
	"truffleshufflespeed": 2,
	"truffleshuffleacceleration": 8,
	
	"starttowardsplayerhorizontal": true,
	"speedx": -2,
	
	"transforms": true,
	"transformtrigger": "stomp",
	"transformsinto": "bobombhit",
	
	"width": 0.75,
	"height": 0.75,
	"static": false,
	"active": true,
	
	"mask": [	true, 
				false, false, false, false, true,
				false, true, false, true, false,
				false, false, true, false, false,
				true, true, false, false, true,
				false, true, true, false, false,
				true, false, true, true, true],
				
	"autodelete": true,
	
	"offsetX": 6,
	"offsetY": 3,
	"quadcenterX": 8,
	"quadcenterY": 8
}
bobombhit
Image

Code: Select all

{
	"quadcount": 2,
	"nospritesets": true,
	
	"animationtype": "frames",
	"animationframes": 2,
	"animationstart": 1,
	"animationspeed": 1,
	
	"static": false,
	"active": true,
	"autodelete": false,
	
	"Gravity": 5,
	
	"lifetime": 1.5,
	"spawnsenemy": "explosion",
	"spawnenemydelays": [1.0],
	"throwquadoffset": 0,
	"throwpreparetime": 0,
	"spawnenemyspeedx": 0,
	"spawnenemyspeedy": 0,
	
	"width": 0.75,
	"height": 0.75,
	
	"offsetX": 6,
	"offsetY": 3,
	"quadcenterX": 8,
	"quadcenterY": 8
}
explosion
Image

Code: Select all

{
	"quadcount": 3,
	"spawnsound": "fire",
	"nospritesets": true,
	
	"animationtype": "frames",
	"animationframes": 3,
	"animationstart": 1,
	"animationspeed": 0.1,
	
	"kills": true,
	"killsenemies": true,
	
	"lifetime": 0.3,
	
	"width": 2,
	"height": 2,
	"static": false,
	"active": true,
	
	"speedx": 0,
	"speedy": 0,
	"gravity": 0,
	
	"mask": [	true, 
				false, false, false, false, true,
				false, true, false, true, false,
				false, false, true, false, false,
				true, true, false, false, true,
				false, true, true, false, false,
				true, false, true, true, true],
	
	"offsetX": 6,
	"offsetY": 3,
	"quadcenterX": 8,
	"quadcenterY": 8
}

Re: The Enemy Respositorium

Posted: 28 Jul 2014, 21:46
by HugoBDesigner
*cough* Credits for GLaDOS to me *cough*

The new colors look cool, but the Wheatley head could have been worked on more, maybe making it bigger? Just a suggestion...

Re: The Enemy Respositorium

Posted: 28 Jul 2014, 22:00
by Danny
HugoBDesigner wrote:*cough* Credits for GLaDOS to me *cough*

The new colors look cool, but the Wheatley head could have been worked on more, maybe making it bigger? Just a suggestion...
credit to HugoBDesigner (sorry about that)


about the wheatlyglados head im still tweaking the wheatlyglados a bit, i want to tilt the head by 45 degrees so he is looking downward but the rotate tool in paint.net distorts any image that you turn sooo im gonna have to redraw it by hand

i also kinda forgot a few things so heres the updated graphics
Image
Image

Re: The Enemy Respositorium

Posted: 29 Jul 2014, 03:56
by Superjustinbros
Link's Awakening Mario enemies.
Get 'em while they're hot!
Image
Image
(Credit to Bruce Juice)

Re: The Enemy Respositorium

Posted: 31 Jul 2014, 19:18
by craftershaft
B-Man99 wrote:Hi...?
Oh. I was just seeing if anyone cared anymore.


Now can someone make that bowser helmet mario?

Re: The Enemy Respositorium

Posted: 31 Jul 2014, 20:01
by Danny
craftershaft wrote:
B-Man99 wrote:Hi...?
Oh. I was just seeing if anyone cared anymore.


Now can someone make that bowser helmet mario?

remember that this is the enemy repository, the custom enemy help thread will be of more help to you
i would make it for you myself, but between being very busy and the fact that its better to teach you (the give a man a fish metaphor and shit) i cant make this for you, sorry

heres the link
viewtopic.php?f=12&t=4180

Re: The Enemy Respositorium

Posted: 08 Aug 2014, 03:58
by alex gaah
hi, can someone do a chain chomp NOT gigant :v ?

Re: The Enemy Respositorium

Posted: 08 Aug 2014, 12:40
by Jad
alex gaah wrote:hi, can someone do a chain chomp NOT gigant :v ?
Me otherwise not. Also welcome to the forums.