Skate or Dice for Skiing??

Gretchen.

Active member
For those of you that don't know, there's this game called Skate Dice for skateboarding.. You roll the four dice and it tells you a trick you have to land to win..

I was thinking what if someone made these for skiing? Like one dice could have cork, bio, double cork, etc. One could say switch, regular, left, right. One could have spins, or flips on it, and one dice could say grabs. I would be stoked to see some pros play, it would be sick.

I searchbarred, found nothing..

Dumb idea?
 
Haha yeah that would suck... In the skateboarding one you can get a trick that is really hard to land, especially first try.. It wouldnt be a game for people who can't land stuff, I'm just saying it would be awesome to see Wallish vs. Colby James West vs. Tanner vs. (insert any pro skier here..) You know what I mean?

Better explanation of Skate or Dice

dice.jpg

 
yeah idk about the cork/doublecork/flip version your thinkin of

it would definately be more fun with not so difficult stuff lol

or rail trick
 
The thing about the skate version is that its way less riskier than doing spins and flips and grabs. Rails would definitely be a better idea.
 
some company should get on this, this would be tight and a cool way to progress, like you could have sets of dice for beginners, imtermediates, and prooos.
 
Just saw this thread and had a little free time, so I scripted a little something.

Just save the following code as a .html document from notepad or something.

function JSRollDice() {

var ran_dice_1 = Math.random()*6;

var ran_dice_11 = Math.floor(ran_dice_1);

var ran_dice_2 = Math.random()*6;

var ran_dice_22 = Math.floor(ran_dice_2);

var ran_dice_3 = Math.random()*6;

var ran_dice_33 = Math.floor(ran_dice_3);

var ran_dice_4 = Math.random()*6;

var ran_dice_44 = Math.floor(ran_dice_4);

array_dice_1 = new Array('S','Left
Foot','Right
Foot','Switch
Left Foot','Switch
Right Foot','x');

array_dice_2 = new Array('K','90-on','270-on','Front
Switch-up','Blind
Switch-up','x');

array_dice_3 = new Array('I','Slide','Front
Switch-up','Blind
Switch-up','Slide','x');

array_dice_4 = new Array('!','Front
90-out','Front
270-out','Blind
90-out','Blind
270-out','x');

document.all.dice_1.value = array_dice_1[ran_dice_11];

document.all.dice_2.value = array_dice_2[ran_dice_22];

document.all.dice_3.value = array_dice_3[ran_dice_33];

document.all.dice_4.value = array_dice_4[ran_dice_44];

document.all.trick_name.value = array_dice_1[ran_dice_11].replace('
','') + ' ' + array_dice_2[ran_dice_22].replace('
','') + ' ' + array_dice_3[ran_dice_33].replace('
','') + ' ' + array_dice_4[ran_dice_44].replace('
','');

}

Ski Dice

 
That didn't work out too well, here we go again:

function JSRollDice() {

var ran_dice_1 = Math.random()*6;

var ran_dice_11 = Math.floor(ran_dice_1);

var ran_dice_2 = Math.random()*6;

var ran_dice_22 = Math.floor(ran_dice_2);

var ran_dice_3 = Math.random()*6;

var ran_dice_33 = Math.floor(ran_dice_3);

var ran_dice_4 = Math.random()*6;

var ran_dice_44 = Math.floor(ran_dice_4);

array_dice_1 = new Array('S','Left
Foot','Right
Foot','Switch
Left Foot','Switch
Right Foot','x');

array_dice_2 = new Array('K','90-on','270-on','Front
Switch-up','Blind
Switch-up','x');

array_dice_3 = new Array('I','Slide','Front
Switch-up','Blind
Switch-up','Slide','x');

array_dice_4 = new Array('!','Front
90-out','Front
270-out','Blind
90-out','Blind
270-out','x');

document.all.dice_1.value = array_dice_1[ran_dice_11];

document.all.dice_2.value = array_dice_2[ran_dice_22];

document.all.dice_3.value = array_dice_3[ran_dice_33];

document.all.dice_4.value = array_dice_4[ran_dice_44];

document.all.trick_name.value = array_dice_1[ran_dice_11].replace('
','') + ' ' + array_dice_2[ran_dice_22].replace('
','') + ' ' + array_dice_3[ran_dice_33].replace('
','') + ' ' + array_dice_4[ran_dice_44].replace('
','');

}

Ski Dice

 
function JSRollDice() { var ran_dice_1 = Math.random()*6; var ran_dice_11 = Math.floor(ran_dice_1); var ran_dice_2 = Math.random()*6; var ran_dice_22 = Math.floor(ran_dice_2); var ran_dice_3 = Math.random()*6; var ran_dice_33 = Math.floor(ran_dice_3); var ran_dice_4 = Math.random()*6; var ran_dice_44 = Math.floor(ran_dice_4); array_dice_1 = new Array('S','Left

Foot','Right

Foot','Switch

Left Foot','Switch

Right Foot','x'); array_dice_2 = new Array('K','90-on','270-on','Front

Switch-up','Blind

Switch-up','x'); array_dice_3 = new Array('I','Slide','Front

Switch-up','Blind

Switch-up','Slide','x'); array_dice_4 = new Array('!','Front

90-out','Front

270-out','Blind

90-out','Blind

270-out','x'); document.all.dice_1.value = array_dice_1[ran_dice_11]; document.all.dice_2.value = array_dice_2[ran_dice_22]; document.all.dice_3.value = array_dice_3[ran_dice_33]; document.all.dice_4.value = array_dice_4[ran_dice_44]; document.all.trick_name.value = array_dice_1[ran_dice_11].replace('

','') + ' ' + array_dice_2[ran_dice_22].replace('

','') + ' ' + array_dice_3[ran_dice_33].replace('

','') + ' ' + array_dice_4[ran_dice_44].replace('

',''); }

 
This sounds like a super sick idea for like a backyard rail or something if your not pro. Most of us dont feel to comfortable throwing down doubles. haha
 
Well i've been skating those skate dice for a while, but my and my friends want it to step up when you play, so at we beginning we only play with one of the dices and then adds more dices throughout the game.. Thats sick when you play it like that
 
RedBull did something like this a while ago, called Tricky Roulette. It's pretty similar, with variations of rail tricks on the faces of dice, which the participants then roll.
 
Back
Top