▪️Car Transform

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

Usage Limit and Transformation:

Each vehicle is assigned a defined usage limit. Once this limit is reached, the car becomes "OutDate," necessitating transformation for continued use. The transformation process combines the attributes of the two merged vehicles to create a new NFT Car.

Randomized Attributes

When two cars are merged, their attributes (such as speed, fuel efficiency, or durability) are combined to form the new car’s capabilities. The final attribute score is calculated by averaging the values from the two original cars.

Attribute Score Calculation:

# Formula to calculate the new attribute score 
def calculate_new_attribute(attribute_1, attribute_2):
    """
    This function takes in two attributes from two different cars
    and returns the new attribute score after merging them.
    """
    new_attribute_score = (attribute_1 + attribute_2) / 2
    return new_attribute_score

This fosters experimentation and personalization, prolonging the lifecycle of NFT Cars and introducing an element of surprise.

Last updated