Skip to content

Commit

Permalink
Small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
YoctoProductions committed Feb 4, 2025
1 parent e5115c2 commit 46305de
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 22 deletions.
5 changes: 1 addition & 4 deletions api/src/cosmetics.json
Original file line number Diff line number Diff line change
Expand Up @@ -3134,15 +3134,12 @@
},
"rainbowluminous": {
"ultimate": true,
"sale": true,
"ogprice": 25000,
"saletag": "100% OFF",
"tag": "Ultimate Luminous",
"name": "rainbowluminous",
"displayName": "Rainbow Luminous",
"id": 314,
"buyable": true,
"price": 0,
"price": 25000,
"swordFileName": "ultimateLuminousSword.png",
"bodyFileName": "ultimateLuminousPlayer.png",
"description": "Even brighter than before!"
Expand Down
4 changes: 2 additions & 2 deletions client/src/game/Controls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ export class Controls {
[InputTypes.Left]: ['A', 'LEFT'],
[InputTypes.Down]: ['S', 'DOWN'],
[InputTypes.Right]: ['D', 'RIGHT'],
[InputTypes.Ability]: ['G'],
[InputTypes.SwordThrow]: ['C'],
[InputTypes.Ability]: ['G', 'R'],
[InputTypes.SwordThrow]: ['C', 'SHIFT'],
[InputTypes.SwordSwing]: ['SPACE'],
};

Expand Down
5 changes: 1 addition & 4 deletions client/src/game/cosmetics.json
Original file line number Diff line number Diff line change
Expand Up @@ -3134,15 +3134,12 @@
},
"rainbowluminous": {
"ultimate": true,
"sale": true,
"ogprice": 25000,
"saletag": "100% OFF",
"tag": "Ultimate Luminous",
"name": "rainbowluminous",
"displayName": "Rainbow Luminous",
"id": 314,
"buyable": true,
"price": 0,
"price": 25000,
"swordFileName": "ultimateLuminousSword.png",
"bodyFileName": "ultimateLuminousPlayer.png",
"description": "Even brighter than before!"
Expand Down
5 changes: 3 additions & 2 deletions client/src/ui/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -307,10 +307,11 @@ function App() {

<div className="announcementCard menuCard panel">
<div>
<span className="announcedate">
{/* <!-- <span className="announcedate">
(January 27th):
</span>
{} 3 new ultimate skins! + <span className="announceimportant">GET THE ULTIMATE LUMINOUS SKIN FOR FREE BEFORE 2/3!</span>
{} --!> */}Tip: On computers, you can press G or R to activate your ability, and C or Shift to throw your sword! {/* <!-- <span className="announceimportant">GET THE ULTIMATE LUMINOUS SKIN FOR FREE BEFORE 2/3!</span>
{} --!> */}
</div>
</div>
{/* <!-- Play --> */}
Expand Down
5 changes: 1 addition & 4 deletions cosmetics.json
Original file line number Diff line number Diff line change
Expand Up @@ -3134,15 +3134,12 @@
},
"rainbowluminous": {
"ultimate": true,
"sale": true,
"ogprice": 25000,
"saletag": "100% OFF",
"tag": "Ultimate Luminous",
"name": "rainbowluminous",
"displayName": "Rainbow Luminous",
"id": 314,
"buyable": true,
"price": 0,
"price": 25000,
"swordFileName": "ultimateLuminousSword.png",
"bodyFileName": "ultimateLuminousPlayer.png",
"description": "Even brighter than before!"
Expand Down
5 changes: 1 addition & 4 deletions server/src/cosmetics.json
Original file line number Diff line number Diff line change
Expand Up @@ -3134,15 +3134,12 @@
},
"rainbowluminous": {
"ultimate": true,
"sale": true,
"ogprice": 25000,
"saletag": "100% OFF",
"tag": "Ultimate Luminous",
"name": "rainbowluminous",
"displayName": "Rainbow Luminous",
"id": 314,
"buyable": true,
"price": 0,
"price": 25000,
"swordFileName": "ultimateLuminousSword.png",
"bodyFileName": "ultimateLuminousPlayer.png",
"description": "Even brighter than before!"
Expand Down
4 changes: 2 additions & 2 deletions server/src/game/entities/Chest.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ const rarities = [
[200, 50, 1, 75],
[350, 150, 30, 13],
[500, 250, 70, 6],
[900, 700, 100, 4],
[1200, 1500, 200, 3],
[900, 750, 100, 4],
[1200, 2000, 230, 3],
[1700, 6000, 800, 1.5],
];

Expand Down

0 comments on commit 46305de

Please sign in to comment.