-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJugador.as
52 lines (42 loc) · 1.07 KB
/
Jugador.as
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
import it.gotoandplay.smartfoxserver.*;
class Jugador
{
var nombre:String;
var miTurno:Boolean;
var puntosVida;
var perdi:Boolean;
public function Jugador( nombre1, puntosVida1) {
// constructor code
this.nombre = nombre1;
this.puntosVida = puntosVida1;
this.perdi = false;
_root.jugador_txt.text = nombre1;
_root.jugador_txt.autoSize();
_root.puntos_txt.text = puntosVida1;
}
public function quitarPuntos( puntos)
{
this.puntosVida = this.puntosVida - puntos;
if(this.puntosVida <= 0)
{
this.perdi = true;
}
}
public static function barajar()
{
trace("barajando "+_root.tam);
var nAleatorio;
for (var i:Number = 5; i < _root.prueba.length + 5; i++)
{
_root.prueba[i - 5] = i;
}
for (var i:Number = 0; i < _root.prueba.length; i++)
{
nAleatorio = Math.floor(Math.random() * (_root.tam - 1 + 1)) + 1;
var copia:Number = _root.prueba[i];
_root.prueba[i] = _root.prueba[nAleatorio - 1];
_root.prueba[nAleatorio - 1] = copia;
}
//trace(prueba.length);
}
}