-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCharacter.js
More file actions
51 lines (42 loc) · 1.65 KB
/
Character.js
File metadata and controls
51 lines (42 loc) · 1.65 KB
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
import { getDiceRollArray, getDicePlaceholderHtml, getPercentage } from './utils.js'
function Character(data) {
Object.assign(this, data)
this.maxHealth = this.health
this.diceHtml = getDicePlaceholderHtml(this.diceCount)
this.setDiceHtml = function() {
this.currentDiceScore = getDiceRollArray(this.diceCount)
this.diceHtml = this.currentDiceScore.map((num) =>
`<div class="dice">${num}</div>`).join("")
}
this.takeDamage = function (attackScoreArray) {
const totalAttackScore = attackScoreArray.reduce((total, num) => total + num)
this.health -= totalAttackScore
if (this.health <= 0) {
this.dead = true
this.health = 0
}
}
this.getHealthBarHtml = function () {
const percent = getPercentage(this.health, this.maxHealth)
return `<div class="health-bar-outer">
<div class="health-bar-inner ${percent < 26 ? "danger" : ""}"
style="width:${percent}%;">
</div>
</div>`
}
this.getCharacterHtml = function () {
const { elementId, name, avatar, health, diceCount, diceHtml } = this
const healthBar = this.getHealthBarHtml()
return `
<div class="character-card">
<h4 class="name"> ${name} </h4>
<img class="avatar" src="${avatar}" />
<div class="health">health: <b> ${health} </b></div>
${healthBar}
<div class="dice-container">
${diceHtml}
</div>
</div>`
}
}
export default Character