Marketplace | Games

Smart-Contract #000-00000000000021

Chart
logo

Flappy vs Alchimic 00601

Join the thrilling adventure of a brave crow as it faces off against the cunning alchemist in a high-flying showdown. Test your skills in this action-packed game where you control the crow's destiny.With stunning graphics and addictive gameplay, 'Flappy vs Alchemic' will keep you entertained.

Characteristics:

  • [Category] <-------------------------------------------> [Games]
  • [Creator] <-----------------------------------------------------> [InNotSystem13]
  • [Project] <---------------------------------------------------> [Flappy vs Alchimic]
  • [Identifier] <--------------------------------------------------------> [00601]
  • [Contract] <------------> [0xc762a1ccd7632b49BC914947cF8613E10F602687]
  • [Chain] <---------------------------------------------------------> [BSC Chain]
  • [Type] <----------------------------------------------------> [Application]

Binance Smart Chain (BSC)

Price: 1 USDT

Video instruction

“In order to start creating something exclusive, you don’t need any special knowledge or skills, you just need to be able to COPY and PASTE - it’s like with a girl, you just need to undress and paste!”

3 Simple steps to get started 🚀

Install Python: If you don't already have it, download and install Python from the official website. Python supports various operating systems, and you can choose the version that suits your computer.

Install PyCharm: Download and install the PyCharm IDE to make creating your application easier. You can find a free version of PyCharm Community Edition that is good to get started.

Copy Code: Open the PyCharm development environment, create a new project. Copy and paste the code into the window, click the Start button, you have launched your project. Use this code or other codes from the Metaverse to create something global and worthwhile!

Try just copying your first code and creating an application

In just 1 minute

    import pygame
    import sys

    # Initialize Pygame
    pygame.init()

    # Screen dimensions
    screen_width = 400
    screen_height = 600

    # Create a window
    game_display = pygame.display.set_mode((screen_width, screen_height))
    pygame.display.set_caption("Flappy Bird")

    # Colors
    white = (255, 255, 255)

    # Crow and obstacle dimensions
    crow_width = 50
    crow_height = 50
    obstacle_width = 100
    obstacle_height = 100

    # Load images
    crow_image = pygame.image.load("Static/photo.JPG")
    crow_image = pygame.transform.scale(crow_image, (crow_width, crow_height))

    obstacle_image = pygame.image.load("Static/photo1.JPG")
    obstacle_image = pygame.transform.scale(obstacle_image, (obstacle_width, obstacle_height))

    # Initial crow coordinates
    crow_x = 100
    crow_y = screen_height // 2

    # Crow parameters
    crow_speed = 5
    crow_gravity = 0.5

    # Initial obstacle coordinates
    obstacle_x = screen_width
    obstacle_y = 300
    obstacle_speed = 3

    # Scores
    score = 0
    font = pygame.font.Font(None, 36)

    # Main game loop
    running = True
    while running:
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                running = False  # Quit the game when the window is closed
            if event.type == pygame.KEYDOWN:
                if event.key == pygame.K_SPACE:
                    crow_speed = -10  # Jump when the space key is pressed

        crow_speed += crow_gravity
        crow_y += crow_speed

        obstacle_x -= obstacle_speed

        if obstacle_x < -obstacle_width:
            obstacle_x = screen_width
            obstacle_y = 300

        # Check for collision with the obstacle
        if (crow_x < obstacle_x + obstacle_width and crow_x + crow_width > obstacle_x and
                crow_y < obstacle_y + obstacle_height and crow_y + crow_height > obstacle_y):
            running = False  # Quit the game upon collision

        # Check for going out of the screen boundaries
        if crow_y < 0:
            crow_y = 0
        if crow_y > screen_height - crow_height:
            crow_y = screen_height - crow_height

        # Drawing
        game_display.fill(white)
        game_display.blit(crow_image, (crow_x, crow_y))
        game_display.blit(obstacle_image, (obstacle_x, obstacle_y))
        pygame.draw.rect(game_display, white, (obstacle_x, obstacle_y, obstacle_width, obstacle_height), 2)
        score_text = font.render(f"Score: {score}", True, (0, 0, 255))  # Blue score text
        game_display.blit(score_text, (10, 10))

        pygame.display.update()

        if obstacle_x + obstacle_width < crow_x:
            score += 1

        # Delay for controlling the game speed
        pygame.time.delay(30)

    pygame.quit()
    sys.exit()


    # pip install pygame


            
Copy the code, paste it into PyCharm, press the start button
Message to the community from the creator: I created a crow and an Alchimic and demonstrated how they interact on the coordinate axis in this game. In 'Flappy Crow vs Alchemic,' everyone moves in their own world, but their destinies intersect in the coordinate system. You have to control a crow when the Alchemist is on its way.
I dance to track Eminem - Killer
Quote from the creator: “The big path to wealth starts with 1 USD”
Start Price - 1 USDT
Additions: In the Marketplace “Calculators All” and “Games” I add and assign the main currency AK (A.KANGOL)
1 USDT & = & 1 AK (A.KANGOL)
(A.KANGOL) - [internal coin]
The purpose of the contract is step-by-step training using BlockChain in creating your projects using Python - [COPY & PASTE]
Логотип

Games

Товар 1

Flappy vs Alchimic 00601

Creator - InNotSystem13

Contract type - Open

Товар 2

Apple Snake 00602

Creator - InNotSystem13

Contract type - Open

Товар 3

Snake vs Alhimic 00603

Creator - InNotSystem13

Contract type - Open

Товар 4

Square Jumps 00604

Creator - InNotSystem13

Contract type - Open

Товар 5

Circle & Square 00605

Creator - InNotSystem13

Contract type - Open