-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
233 lines (197 loc) · 7.29 KB
/
script.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
//#region Variables
let table = document.getElementById('filtro');
let table_complete = table.outerHTML;
var wdn = document.getElementById('Seleccion_bayas');
let calculadora = document.getElementById('calculadora');
let baya_calc = document.getElementById('baya_calc');
var uso_baya = document.getElementById('uso_baya');
var time = document.getElementById('baya_crecimiento');
var baya_lista = document.getElementById('baya_lista');
//#endregion
//#region Almacenar Objetos HTML
function AlmacenarHTML(nombre_clase){
table.innerHTML = table_complete;
let elementosHTML = '';
let elementosClase = document.getElementsByClassName(nombre_clase);
for(var n = 0 ; n < elementosClase.length ; n++){
elementosHTML += elementosClase[n].outerHTML;
}
return elementosHTML;
}
//#endregion
//#region Variables creadas con la función anterior (son fragmentos de la tabla 'filtro')
let encabezado = AlmacenarHTML('encabezado');
let semillas = AlmacenarHTML('semillas');
let evs = AlmacenarHTML('evs');
let pps = AlmacenarHTML('pps');
//#endregion
//#region Destacar Fila de filtro
function DestacarFila(clase){
let fila = document.getElementsByClassName(clase);
for(var n = 0 ; n < fila.length ; n++){
fila[n].classList.add('destacar');
}
}
//#endregion
//#region Calcular Tiempo
function CalcularTime(type){
let hr_actual = new Date();
let hr = hr_actual.getHours();
let min = hr_actual.getMinutes();
let time_grow = 0;
let baya = '';
let txt = '';
let txt_encabezado = '';
if(type == 'Semillas' || type == 'atania' || type == 'meloc' || type == 'perasi' || type == 'safre' || type == 'zreza')
{
time_grow = 16;
txt = 'Curar problemas de estado / Farmeo de semillas';
txt_encabezado = '<tr><td class="filt_sub" colspan="5">' + 'Mostrando bayas para ' + txt + '</td></tr>';
table.innerHTML = txt_encabezado + encabezado + semillas;
if(type != 'Semillas'){
baya = type;
DestacarFila(type);
event.stopPropagation();
}
}
if(type == 'Evs' || type == 'algama' || type == 'grana' || type == 'ispero' || type == 'meluce' || type == 'tamate' || type == 'uvav')
{
time_grow = 44;
txt = "Disminuir Ev's / Aumentar la Felicidad";
txt_encabezado = '<tr><td class="filt_sub" colspan="5">' + 'Mostrando bayas para ' + txt + '</td></tr>';
table.innerHTML = txt_encabezado + encabezado + evs;
if(type != 'Evs'){
baya = type;
DestacarFila(type);
event.stopPropagation();
}
}
if(type == 'PPs')
{
time_grow = 20;
baya = 'zanama';
txt = "Recuperar PP's";
txt_encabezado = '<tr><td class="filt_sub" colspan="5">' + 'Mostrando bayas para ' + txt + '</td></tr>';
table.innerHTML = txt_encabezado + encabezado + pps;
}
if(type != 'All'){
time.innerHTML = time_grow + ' horas';
baya_calc.style.display = 'block';
baya_calc.innerHTML = '<img src="assets/baya_' + baya + '.png" class="baya_icon">';
if(type != 'Evs' && type != 'Semillas' && type != 'PPs'){
uso_baya.innerHTML = '<b class="nombre_baya">Baya ' + type + '</b>';
if(type == 'atania'){uso_baya.innerHTML += '<p>Despierta al Pokémon / Farmeo de semillas secas</p>';}
if(type == 'meloc'){uso_baya.innerHTML += '<p>Cura el envenenamiento / Farmeo de semillas dulces</p>';}
if(type == 'perasi'){uso_baya.innerHTML += '<p>Cura el congelamiento / Farmeo de semillas ácidas</p>';}
if(type == 'safre'){uso_baya.innerHTML += '<p>Cura las quemaduras / Farmeo de semillas amargas</p>';}
if(type == 'zreza'){uso_baya.innerHTML += '<p>Cura la paralisis / Farmeo de semillas picantes</p>';}
if(type == 'algama'){uso_baya.innerHTML += '<p>Resta 10 Ev´s de Ataque / Aumenta la felicidad</p>';}
if(type == 'grana'){uso_baya.innerHTML += '<p>Resta 10 Ev´s de PS / Aumenta la felicidad</p>';}
if(type == 'ispero'){uso_baya.innerHTML += '<p>Resta 10 Ev´s de Defensa / Aumenta la felicidad</p>';}
if(type == 'meluce'){uso_baya.innerHTML += '<p>Resta 10 Ev´s de Ataque Esp. / Aumenta la felicidad</p>';}
if(type == 'tamate'){uso_baya.innerHTML += '<p>Resta 10 Ev´s de Velocidad / Aumenta la felicidad</p>';}
if(type == 'uvav'){uso_baya.innerHTML += '<p>Resta 10 Ev´s de Defensa Esp. / Aumenta la felicidad</p>';}
} else {
if(type == 'PPs'){ uso_baya.innerHTML = '<b class="nombre_baya">Baya zanama</b><p>Restaura 10 PP de un movimiento</p>'; }
else {
uso_baya.innerHTML = '<p>' + txt + '</p>';
baya_calc.style.display = 'none';
}
}
var days = '';
var tot = time_grow + hr;
if(tot > 48) //Para quitarle 2 días
{
tot -= 48;
days = 'En 2 días, ';
}
if(tot > 24) //Para quitarle 1 día
{
tot -= 24;
days = 'Mañana, ';
}
if(min < 10){min = '0' + min;}
if(days != '')
{
if(tot >= 12)
{
tot -= 12;
if(tot == 0){tot = 12;}
baya_lista.innerHTML = days + ' a las ' + tot + ':' + min + ' PM';
}
else
{
baya_lista.innerHTML = days + ' a las ' + tot + ':' + min + ' AM';
}
}
else
{
if(tot >= 12)
{
tot -= 12;
if(tot == 0){tot = 12;}
baya_lista.innerHTML = 'A las ' + tot + ':' + min + ' PM';
}
else
{
baya_lista.innerHTML = 'A las ' + tot + ':' + min + ' AM';
}
}
calculadora.scrollIntoView({ behavior: 'smooth' });
}
if(type == 'All')
{
table.innerHTML = table_complete;
time.innerHTML = '';
uso_baya.innerHTML = '';
baya_lista.innerHTML = '';
baya_calc.style.display = 'none';
table.scrollIntoView({ behavior: 'smooth' });
}
Cerrar_Ventana();
}
//#endregion
//#region Cambiar Color de Celdas en Tabla Selección
function ChangeColor(a){
if(a != 'All'){
var x = a + '_1';
var y = a + '_2';
obj1 = document.getElementById(x);
obj2 = document.getElementById(y);
obj1.className = 'animation';
obj2.className = 'animation';
}
else{
obj1 = document.getElementById(a);
obj1.className = 'animation';
}
}
function ReturnColor(a){
if(a != 'All'){
var x = a + '_1';
var y = a + '_2';
obj1 = document.getElementById(x);
obj2 = document.getElementById(y);
}
else{
obj1 = document.getElementById(a);
}
obj1.className = '';
obj2.className = '';
}
//#endregion
//#region Mostrar/Ocultar Ventana
function Abrir_Ventana(){
Cambio_Ventana('flex');
setTimeout(function(){
wdn.style.top = '0';
}, 300);
}
function Cerrar_Ventana(){
wdn.style.top = '-100%';
setTimeout(Cambio_Ventana, 300, 'none');
}
function Cambio_Ventana(opc){
wdn.style.display = opc;
}
//#endregion