O lo que es lo mismo (supongo) (sacado de:
https://developer.mozilla.org/en-US/.../Object/create)
Código Javascript
:
Ver originalfunction jugadorPrototype(){
this.salud = 3
}
jugadorPrototype.prototype.caminar = function(){
}
jugadorPrototype.prototype.colisionar = function(){
}
jugadorPrototype.prototype.atacar = function(){
}
var heroe = new jugadorPrototype();