Added mod - sports_beta.js
Beta version of the upcoming sports.js, more changes will come!
This commit is contained in:
parent
fe95e8cf8b
commit
1b87acf43b
|
|
@ -0,0 +1,111 @@
|
||||||
|
elements.softball = {
|
||||||
|
color: "#ffe300",
|
||||||
|
behavior: behaviors.BOUNCY,
|
||||||
|
category: "softball_equipment",
|
||||||
|
state: "solid",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.baseball = {
|
||||||
|
color: "#eae7dc",
|
||||||
|
behavior: behaviors.BOUNCY,
|
||||||
|
category: "baseball_equipment",
|
||||||
|
state: "solid",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.basketball = {
|
||||||
|
color: "#e77f1c",
|
||||||
|
behavior: behaviors.BOUNCY,
|
||||||
|
category: "basketball_equipment",
|
||||||
|
state: "solid",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.football = {
|
||||||
|
color: "#ac5541",
|
||||||
|
behavior: behaviors.BOUNCY,
|
||||||
|
category: "football_equipment",
|
||||||
|
state: "solid",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.soccer_ball = {
|
||||||
|
color: "#f9fbfa",
|
||||||
|
behavior: behaviors.BOUNCY,
|
||||||
|
category: "soccer_equipment",
|
||||||
|
state: "solid",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.tennis_ball = {
|
||||||
|
color: "#9ab973",
|
||||||
|
behavior: behaviors.BOUNCY,
|
||||||
|
category: "tennis_equipment",
|
||||||
|
state: "solid",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.puck = {
|
||||||
|
color: "#180902",
|
||||||
|
behavior: behaviors.BOUNCY,
|
||||||
|
category: "hockey_equipment",
|
||||||
|
state: "solid",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.dodge_ball = {
|
||||||
|
color: "#533d61",
|
||||||
|
behavior: behaviors.BOUNCY,
|
||||||
|
category: "gaga_ball",
|
||||||
|
state: "solid",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.deoderant = {
|
||||||
|
color: "#f9fbfa",
|
||||||
|
behavior: behaviors.GAS,
|
||||||
|
category: "softball_equipment",
|
||||||
|
state: "gas",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.deoderant = {
|
||||||
|
color: "#f9fbfa",
|
||||||
|
behavior: behaviors.GAS,
|
||||||
|
category: "baseball_equipment",
|
||||||
|
state: "gas",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.deoderant = {
|
||||||
|
color: "#f9fbfa",
|
||||||
|
behavior: behaviors.GAS,
|
||||||
|
category: "basketball_equipment",
|
||||||
|
state: "gas",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.deoderant = {
|
||||||
|
color: "#f9fbfa",
|
||||||
|
behavior: behaviors.GAS,
|
||||||
|
category: "football_equipment",
|
||||||
|
state: "gas",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.deoderant = {
|
||||||
|
color: "#f9fbfa",
|
||||||
|
behavior: behaviors.GAS,
|
||||||
|
category: "soccer_equipment",
|
||||||
|
state: "gas",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.deoderant = {
|
||||||
|
color: "#f9fbfa",
|
||||||
|
behavior: behaviors.GAS,
|
||||||
|
category: "tennis_equipment",
|
||||||
|
state: "gas",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.deoderant = {
|
||||||
|
color: "#f9fbfa",
|
||||||
|
behavior: behaviors.GAS,
|
||||||
|
category: "hockey_equipment",
|
||||||
|
state: "gas",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.deoderant = {
|
||||||
|
color: "#f9fbfa",
|
||||||
|
behavior: behaviors.GAS,
|
||||||
|
category: "gaga_ball",
|
||||||
|
state: "gas",
|
||||||
|
};
|
||||||
Loading…
Reference in New Issue