-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pigs.js
79 lines (79 loc) · 3.28 KB
/
Pigs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
System.register([], function (exports_1, context_1) {
"use strict";
var Pig, GreyPig, ChestnutPig, WhitePig, BlackPig;
var __moduleName = context_1 && context_1.id;
return {
setters: [],
execute: function () {
Pig = class Pig {
constructor(id, name, breed, height, weight, personality, category) {
this.id = id;
this.name = name;
this.breed = breed;
this.height = height;
this.weight = weight;
this.personality = personality;
this.category = category;
}
};
exports_1("Pig", Pig);
//Subclasses created based on Lecture topic 5 notes
GreyPig = class GreyPig extends Pig {
constructor(id, name, breed, height, weight, personality, category) {
super(id, name, breed, height, weight, personality, "Grey");
this.id = id;
this.name = name;
this.breed = breed;
this.height = height;
this.weight = weight;
this.personality = personality;
this.category = category;
this.swimmingAbility = 0;
}
};
exports_1("GreyPig", GreyPig);
ChestnutPig = class ChestnutPig extends Pig {
constructor(id, name, breed, height, weight, personality, category) {
super(id, name, breed, height, weight, personality, "Chestnut");
this.id = id;
this.name = name;
this.breed = breed;
this.height = height;
this.weight = weight;
this.personality = personality;
this.category = category;
this.language = "";
}
};
exports_1("ChestnutPig", ChestnutPig);
WhitePig = class WhitePig extends Pig {
constructor(id, name, breed, height, weight, personality, category) {
super(id, name, breed, height, weight, personality, "White");
this.id = id;
this.name = name;
this.breed = breed;
this.height = height;
this.weight = weight;
this.personality = personality;
this.category = category;
this.runningAbility = 0;
}
};
exports_1("WhitePig", WhitePig);
BlackPig = class BlackPig extends Pig {
constructor(id, name, breed, height, weight, personality, category) {
super(id, name, breed, height, weight, personality, "Black");
this.id = id;
this.name = name;
this.breed = breed;
this.height = height;
this.weight = weight;
this.personality = personality;
this.category = category;
this.strengthAbility = 1;
}
};
exports_1("BlackPig", BlackPig);
}
};
});