▪️Fuel-Tank System

The Car Transform feature allows users to rejuvenate their NFT Cars by merging two "OutDate" vehicles.

Refueling Mechanism

Users can refill their Fuel-Tank through various in-app activities or by purchasing fuel using the native GRAB token. The refueling process is tracked in real-time, ensuring users are aware of their current fuel status.

Earnings Calculation:

# Formula for calculating earnings
def calculate_earnings(distance, fuel_efficiency):
    earnings = distance * fuel_efficiency
    return earnings

# Earning variables
distance_traveled = 1  # in miles or kilometers
fuel_efficiency_factor = 1  # points per mile/km

# Calculate total earnings
total_earnings = calculate_earnings(distance_traveled, fuel_efficiency_factor)
print(f"Total Earnings: {total_earnings} points")

Where:

  • distance represents the distance traveled (in miles or kilometers)

  • fuel_efficiency is the fuel efficiency factor (points earned per mile or kilometer)

Maintaining a full tank is essential to maximizing earnings, as a low fuel level reduces the vehicle's ability to travel, thus impacting potential rewards. This system encourages frequent interaction with the app, motivating users to keep their tanks full and optimize their travel to earn the highest possible rewards.

Last updated