File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -168,8 +168,8 @@ js13k.Player = class extends js13k.Creature {
168
168
const list = [
169
169
// DMG, range, cost
170
170
[ 12 , 1.5 , 2 ] , // normal attack
171
- [ 8 , 4.5 , 5 ] , // hatchet throw
172
- [ 10 , 1.5 , 8 ] , // sweeping blow
171
+ [ 8 , 4.5 , 4 ] , // hatchet throw
172
+ [ 10 , 1.5 , 6 ] , // sweeping blow
173
173
] ;
174
174
175
175
const attack = list [ type ] ;
Original file line number Diff line number Diff line change @@ -46,12 +46,12 @@ js13k.UI = {
46
46
player . attackType == 0 ? '#c7e' : '#fff' , '#000'
47
47
) ;
48
48
this . writeText (
49
- '[2] Throw Hatchet, -5 SP' ,
49
+ '[2] Throw Hatchet, -4 SP' ,
50
50
16 , 116 ,
51
51
player . attackType == 1 ? '#c7e' : '#fff' , '#000'
52
52
) ;
53
53
this . writeText (
54
- '[3] Sweeping Blow, -8 SP' ,
54
+ '[3] Sweeping Blow, -6 SP' ,
55
55
16 , 138 ,
56
56
player . attackType == 2 ? '#c7e' : '#fff' , '#000'
57
57
) ;
@@ -215,8 +215,8 @@ js13k.UI = {
215
215
const attacks = this . buildNode (
216
216
'<div class="b">' +
217
217
'<button style="top:0">[1] Direct Attack, -2 SP</button>' +
218
- '<button style="top:22px">[2] Throw Hatchet, -5 SP</button>' +
219
- '<button style="top:44px">[3] Sweeping Blow, -8 SP</button>' +
218
+ '<button style="top:22px">[2] Throw Hatchet, -4 SP</button>' +
219
+ '<button style="top:44px">[3] Sweeping Blow, -6 SP</button>' +
220
220
'</div>'
221
221
) ;
222
222
You can’t perform that action at this time.
0 commit comments