SlopScore
00 crowd

one-shot-bird

Jogo Classico dos Pássaros em Pixel Art
Open repo on GitHub Open the demogithub.com/claudneysessa/one-shot-bird
GDScript · ★ 1 · 0 forks · MIT · paperwork by the Cap'mmostly ai (inferred)light human (inferred)works-on-my-machine (inferred)game
listed 1 hour ago by claudneysessa · last checked 1 hour ago
The owner didn't write this. This repo never submitted itself. The Cap'm found it on a truffle trawl and wrote its paperwork from what GitHub already shows. Picked by hand by the Cap'm on 2026-09-13: Jogo Classico dos Pássaros em Pixel Art; its own README says "Built entirely with AI". 1 stars; MIT license. The owner did not submit this. Votes count; awards don't until the owner claims it.

I'm not calling your project slop! Geeze, it's a joke... Do you own this repo?

Log in with GitHub as claudneysessa. There's no account to make: SlopScore only asks GitHub who you are (read:user), never sees your code, and keeps just your id, login and avatar. Then you can:

  • Keep it, on your terms. Commit your own slopscore.md (spec) and press Refresh. Your paperwork replaces the Cap'm's, and you can submit it for Slop of the Day.
  • Take it down. One click on Remove. It stays gone; the trawl never brings it back.

Log in with GitHub

Can't log in as the owner? Request a takedown. No login needed, and a trawled listing comes down right away.

GitHub says
Jogo Classico dos Pássaros em Pixel Art
website
https://claudneysessa.github.io/
topics
ai-generatedgamegdscriptgodotno-assetsphysicspixel-artprocedural-graphics
created
2026-08-14 · pushed 1 month ago · 25 commits · 1 contributor
languages
GDScript 98%PowerShell 2%
paperwork
code of conductcode of conduct filecontributinglicensereadme 85% health
dependencies
no dependency graph (no manifest, or disabled) · OSV.dev, checked 1 hour ago

Disclosures, inferred by the Cap'm

slopbucket
vibe-coded
category
game
ai_generated
mostly
human_touch
light
status
works-on-my-machine
language (detected)
gdscriptpowershell
topic (detected)
ai-generatedgamegdscriptgodotno-assetsphysicspixel-artprocedural-graphics
license (detected)
mit

The Cap'm's log

The Cap'm wrote this paperwork, not the owner. This repo never submitted itself to SlopScore. The Cap'm picked it by hand: Jogo Classico dos Pássaros em Pixel Art; its own README says "Built entirely with AI". It carries the MIT license. The disclosures above are his best guess from what GitHub shows.

Is this yours? Commit a real slopscore.md and press Refresh to replace this, or remove the listing in one click. There's no account to make: you log in with GitHub.

README — the repo's own words, folded up so the grading fits on one screen

One Shot Bird

A slingshot, a physics engine, and not a single image file.

License: MIT Godot GDScript Assets Version

Português · Changelog · Contributing

One Shot Bird: the bird pulled back on the slingshot, the predicted trajectory arcing across the sky, and a pig sheltered inside a wooden structure

What this is

A physics puzzle game in the slingshot genre, written in Godot 4 with GDScript. You pull a bird back, read the predicted arc, release, and try to bring a wooden or stone structure down on the pigs inside it. Three birds per level, three levels, and every hit resolved by the engine's rigid body simulation rather than by a scripted outcome.

The interesting part is not the genre. It is that the game ships no images at all.

Built entirely with AI. Every line of code, every document and every physics constant in this repository was produced with OpenCode driving the DeepSeek v4 Flash (FREE) model. This is stated plainly because you deserve to know what you are reading before you review it or build on it.

Every pixel is generated

There is no .png in this repository, no sprite sheet, no audio file and no font asset. Every texture you see is built at runtime: pixel_art.gd takes a text map and a palette and returns an ImageTexture.

# a sprite is literally written as text, one character per pixel
"...RRRR..."
"..RRRRRR.."
"..RWWRRR.."

The map goes in, Image.create plus set_pixel runs over it, and an ImageTexture comes out. The Art autoload builds every sprite in the game this way when the project starts, which is why the repository is a few dozen kilobytes of source and nothing else.

Rendering uses the NEAREST filter at a logical resolution of 1280×720, with the camera at zoom 3.5 — so a 16×12 pixel block becomes a chunky, readable object on screen.

The title screen, animated: clouds drifting, a bird flying past and pigs hopping along the ground

How the aiming works

The white dots are not decoration. They are the actual predicted trajectory, computed from the same equation the engine will integrate:

launch velocity = pull × 7.2         (pull is capped at 66 px)
y(t) = y₀ + vy·t + ½·g·t²            (g = 400 px/s², set in project.godot)

The dots are sampled from that curve and fade out where they meet the ground, and the red target marker sits at the computed landing point. It grows and becomes more solid as the tension increases, so the strength of the shot is readable without a numeric gauge.

If the prediction and the flight ever disagree, that is a bug worth reporting — they are supposed to be the same maths.

How the damage works

Nothing here is scripted. Every hit is a real collision, detected with body_entered and continuous collision detection on the fast bodies. The bird travels at roughly 500 px/s, which is about 8 pixels per frame — without CCD it would pass straight through a pig between frames.

Body Rule
Pig dies to any real contact: the bird at ≥ 30 px/s, or a falling structure at ≥ 80 px/s
Block ignores impacts under 90 px/s; otherwise loses speed × 0.3 from the bird, speed × 0.1 from anything else
Wood 50 HP
Plank 35 HP
Stone 120 HP

The consequence is that a collapsing tower is a legitimate way to win a level, and often the efficient one.

Playing

  1. On the title screen click INICIAR. SCORES opens your history.
  2. Click the bird on the slingshot and drag backwards. The band stretches, the dots show the arc and the red marker shows where it lands.
  3. Release to launch. The further you pull, the faster and further it flies.
  4. Clear every pig to finish the level.

Scoring: 100 per block destroyed, 500 per pig, 5000 bonus per level cleared.

Action Control
Aim and launch mouse — drag and release
Restart the run R
Back to the menu Esc
Close the score panel / quit from the menu Esc

Scores are written to user://save.json by the Save autoload when you lose, quit with Esc or finish the game. The SCORES panel lists your last 10 runs with points, level and timestamp, plus your record and the furthest level you have reached.

Run it locally

Requires Godot 4.7+ on your PATH (winget install Godot.Godot).

git clone https://github.com/claudneysessa/one-shot-bird.git
cd one-shot-bird

.\run.ps1            # play
.\run.ps1 -Editor    # open in the Godot editor

Or directly:

godot --path ./src

Project layout

one-shot-bird/
├── run.ps1              launcher (-Editor)
├── CHANGELOG.md         delivery history, with date and time
├── CONTRIBUTING.md
├── SECURITY.md
└── src/                 the whole Godot project
    ├── project.godot    gravity 400, NEAREST filter, autoloads Art and Save
    ├── menu.tscn/.gd    title screen, animation, score panel
    ├── main.tscn/.gd    slingshot, aiming, levels, camera, HUD, scoring
    ├── art.gd           autoload Art: every sprite and palette
    ├── pixel_art.gd     text map + palette → ImageTexture (RGBA8)
    ├── saves.gd         autoload Save: user://save.json
    ├── bird.gd          flight, rotation, particle trail
    ├── pig.gd           1 HP, dies to any real impact
    ├── block.gd         wood / plank / stone, HP and break tween
    └── band.gd          the slingshot band (draw_line)

Levels are defined in code, in _level1, _level2 and _level3 in main.gd, and settle into place by physics rather than by hand-placed coordinates in the editor.

Current limits

Honest list, each one an open door rather than an excuse:

  • Three levels. The level format is a handful of function calls, so adding a fourth is a small pull request — and a welcome one.
  • No automated tests. The failure modes here are physical, and a token test suite would be worse than admitting the gap. pixel_art.gd and the ballistic prediction are the deterministic parts and the sensible place to start.
  • Mouse only. No touch or keyboard aiming, so it is desktop-only in practice.
  • No web build published. Godot can export to HTML5, but that export is not set up here, so there is no online demo to link to yet.
  • The in-game text is Portuguese only. The HUD reads PONTOS, NIVEL and PASSAROS, as the screenshots show. Localizing the interface is an open task and a good first contribution.
  • The physics is tuned, not balanced. Difficulty across the three levels was set by feel.

Contributing

Contributions are welcome — levels, physics, balance, documentation and code. Read CONTRIBUTING.md first: it covers the no-external-assets rule, where the tuning constants live, and the play-test checklist that stands in for a test suite. Participation is covered by the Code of Conduct, and security reports have their own policy.

Credits and license

Built by Claudney Sarti Sessa using OpenCode and the DeepSeek v4 Flash (FREE) model, which generated the code, the documentation and the physics balancing.

One Shot Bird is an original game in a well-established genre. It contains no code, art, audio or other asset from any commercial title, and it is not affiliated with or endorsed by any other game or company — every pixel here is produced by the code in this repository.

Released under the MIT License.

Read the rest on GitHub

Scan report · 2026-09-13
  • Prohibited terms or links
  • Repository eligibility
  • slopscore.md paperwork
  • Content policy
  • Risk review — +25 binaries at repo root (run.ps1)

0 comments

log in to comment.

report this listinglog in to report