Skip to main content

500 Reloaded - Jordan

Would sneakerheads buy it? Likely yes—but with controversy. Purists might decry the absence of a Jumpman logo on the heel (replaced by a stylized “500” monogram) or the lack of a visible Air unit in the forefoot. However, a younger demographic—one raised on Yeezy 500s, Balenciaga Track sneakers, and Hoka Cliftons—would appreciate the silhouette’s bulky confidence. Resale value would hinge on limited drops and collaboration (e.g., a Union LA or JJJJound edition of the Jordan 500 Reloaded, stripping away bright accents for monochrome minimalism).

Problem: In the original game, players often have to micromanage energy, money, and stats while manually navigating repetitive time loops to find specific events. Solution: A dashboard that aggregates stats and allows for "Active Scheduling," reducing grind while adding strategic depth. jordan 500 reloaded


Since the game is likely built on HTML/JavaScript (Twine or vanilla JS), here is how you would structure the code for the Reputation System. Would sneakerheads buy it

Data Structure:

const gameState = 
    player: 
        name: "Jordan",
        energy: 100,
        money: 50,
        hygiene: 80,
        reputation: 
            corporate: 0,   // Range -100 to 100
            criminal: 0,
            social: 10,
            erotic: 0
,
    rumors: [], // Array of active rumors
    schedule: [] // Array of planned actions
;
// Example function to handle an action and update reputation
function performAction(actionType) 
    switch(actionType) 
        case 'work_office':
            gameState.player.money += 100;
            gameState.player.energy -= 30;
            gameState.player.reputation.corporate += 2;
            generateRumor('corporate', 'Jordan has been working hard.');
            break;
        case 'visit_bar':
            gameState.player.energy -= 15;
            gameState.player.reputation.social += 1;
            // Random chance to meet NPC
            if (Math.random() > 0.7) 
                triggerEvent('meet_npc', 'Stranger');
break;
checkGameState();

Scheduling Logic:

function executeSchedule() 
    gameState.schedule.forEach(task => 
        if (gameState.player.energy > 0) 
            performAction(task.type);
            // Log result to UI console
            logToConsole(`Completed: $task.name. Energy: $gameState.player.energy`);
         else 
            logToConsole("Jordan collapsed from exhaustion!");
            // Trigger game over or penalty
);
    // Advance time (Day +1)
    advanceTime();

What can you expect to see on the upcoming Jordan 500 Reloaded? Based on early mockups and insider information, here is the breakdown. Since the game is likely built on HTML/JavaScript

The original Jordan 500 was famously stiff. The "Reloaded" edition addresses this by swapping the old Phylon for Formula 23 foam—the same lightweight, responsive cushioning found in the Jordan Zion line. Additionally, a visible Air Max unit (similar to the AJ5) remains at the heel, but now paired with a forefoot Zoom Air pouch.