Infinite Craft Github May 2026
Infinite Craft is a popular browser-based sandbox game created by Neal Agarwal . In it, the player starts with four basic elements: Fire , Water , Earth , and Wind . By dragging and combining these elements, you can discover new items, concepts, characters, and even entire fictional worlds. The game is notable for its emergent, AI-powered combinatorics — there are reportedly millions of possible recipes.
import json with open("recipes.json") as f: recipes = json.load(f) # format: "result": ["elem1", "elem2"] infinite craft github
print(how_to_make("Tsunami")) Summary Infinite Craft on GitHub is a thriving ecosystem of unofficial APIs, datasets, solvers, visualizers, bots, and game clones . These projects let players explore the game’s combinatorial depth programmatically, learn web automation, graph algorithms, and front-end development — all while respecting the original creator’s work. Infinite Craft is a popular browser-based sandbox game
def how_to_make(target): for result, (a,b) in recipes.items(): if result.lower() == target.lower(): return f"result = a + b" return "Recipe unknown" The game is notable for its emergent, AI-powered