-
Notifications
You must be signed in to change notification settings - Fork 0
/
stigma.js
87 lines (56 loc) · 1.48 KB
/
stigma.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
80
81
82
83
84
85
86
87
$(function(){
//tableau des enchant jaunes violet rouge pour jaune
let txreussite=[100, 95, 90, 80, 70, 60, 50, 40, 30, 20, 20, 20];
let evtxreussite=[100, 95, 90, 80, 70, 60, 50, 40, 30, 30, 30, 30];
let nodown=[5, 5, 5, 10, 10, 16, 20, 20, 20, 100, 20, 20 ]
let crit=[13, 13, 13, 8, 8, 5, 5, 5, 3, 1, 1, 1]
let supercrit=[5, 4, 3, 2, 1, 0, 0, 0, 0, 0, 0, 0 ]
let stigmago=$('#stigmago');
let event=$('#event');
//variable utiles.
//Invoquons rngesus
//automatisons le tout
stigmago.click(function(){
if (event.val()){
var txActuel=evtxreussite;
console.log(txActuel);
}
else {
var txActuel=txreussite;
console.log(txActuel);
}
let pierreutil=0
for (let i=0; i<6; i++){
let stigma=0
while (stigma<12) {
pierreutil++
console.log(stigma);
let roll = Math.floor((Math.random() * 100) + 1);
if (roll>txActuel[stigma]){
// aie
let roll = Math.floor((Math.random() * 100) + 1);
if (roll<nodown[stigma]){
// mega aie
stigma--;
}
}
else {
let roll = Math.floor((Math.random() * 100) + 1);
if (roll>crit[stigma]){
stigma++;
}
else {
let roll = Math.floor((Math.random() * 100) + 1);
if (roll>supercrit[stigma]){
stigma= stigma+2;
}
else {
stigma=stigma+3;
}
}
}
}
}
$('#stigresult').html(pierreutil+" pierres utilisées")
});
});