8000 Finally done by Sonica1031 · Pull Request #673 · bloominstituteoftechnology/JavaScript-IV · GitHub
[go: up one dir, main page]

Skip to content

Finally done #673

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
101 changes: 101 additions & 0 deletions assignments/lambda-classes.js
Original file line number Diff line number Diff line change
@@ -1 +1,102 @@
// CODE here for your Lambda Classes
class GameObject {
constructor (obj) {
this.createdAt = new Date(),
this.name = obj.name,
this.dimensions = [
this.length = obj.dimensions.length,
this.width = obj.dimensions.width,
this.height = obj.dimensions.height,
];
this.takeDamage = function(){
return `${this.name} took damage.`;
};
};
};


class CharacterStats extends GameObject{
constructor (obj) {
super(obj)
this.healthPoints = obj.healthPoints;
};
};


class Humanoid extends CharacterStats{
constructor (obj) {
super(obj);
this.team = obj.team,
this.weapons = obj.weapons,
this.language = obj.language;
this.greet = function(){
return `${this.name} offers a greeting in ${this.language}`
};
this.destroy = function(){
return `${this.name} was removed from the game.`
};
};
};



const mage = new Humanoid({
createdAt: new Date(),
dimensions: {
length: 2,
width: 1,
height: 1,
},
healthPoints: 5,
name: 'Bruce',
team: 'Mage Guild',
weapons: [
'Staff of Shamalama',
],
language: 'Common Tongue',
});

const swordsman = new Humanoid({
createdAt: new Date(),
dimensions: {
length: 2,
width: 2,
height: 2,
},
healthPoints: 15,
name: 'Sir Mustachio',
team: 'The Round Table',
weapons: [
'Giant Sword',
'Shield',
],
language: 'Common Tongue',
});

const archer = new Humanoid({
createdAt: new Date(),
dimensions: {
length: 1,
width: 2,
height: 4,
},
healthPoints: 10,
name: 'Lilith',
team: 'Forest Kingdom',
weapons: [
'Bow',
'Dagger',
],
language: 'Elvish',
});

console.log(mage.createdAt); // Today's date
console.log(archer.dimensions); // { length: 1, width: 2, height: 4 }
console.log(swordsman.healthPoints); // 15
console.log(mage.name); // Bruce
console.log(swordsman.team); // The Round Table
console.log(mage.weapons); // Staff of Shamalama
console.log(archer.language); // Elvish
console.log(archer.greet()); // Lilith offers a greeting in Elvish.
console.log(mage.takeDamage()); // Bruce took damage.
console.log(swordsman.destroy()); // Sir Mustachio was removed from the game.
0