Trickster

⭐ ⭐ (201 endorsements) 📥 22,021 downloads 📌 v2.0.0-beta.54 📅 6/23/2024
🟡 Updated this year

By enjarai · equipment

⬇ Download Mod Source: Modrinth ↗ 📅 Updated: 8/26/2026 📅 Created: 6/23/2024
⚠️ Install Order · 2 steps
1🛠️ Forge — Minecraft Forge (mod loader) Download ↗
2🛠️ Fabric — Fabric Loader Download ↗

Install in this order, then this mod last — most mods fail to load without their framework and dependencies in place.

🔍 Analysis

  • 👍 0.9% endorsement rate
  • 🏆 #141 of 225 equipment mods in this game by downloads

📋 About This Mod

✅ Data is immutable.
✅ Recursion is not only possible, but also the main way to achieve loop-like behaviour.
✅ - Which also means infinite (and even mutual!) recursion via Tail-Call Optimization.
✅ Data can only move up the tree from one node to the next.
✅ - Though various flow control options exist to overcome this limitation.

# Trickster (https://discord.gg/WcYsDDQtyR) (https://ko-fi.com/enjarai) (https://modrinth.com/mod/fabric-api) (https://modrinth.com/mod/cicada) (https://i.enjarai.dev/u/P9BQxO.png)](https://modfest.net/carnival) : # (&#40;https://modrinth.com/mod/owo-lib&#41;) Trickster is an esolang-based magic mod loosely inspired by (https://modrinth.com/mod/hex-casting). Equipped with a book written by an ancient arcane scholar, learn to compose spells which create magical effects as simple or complex as you want. **Trickster's progression is heavily knowledge-based. Looking through the creative tab or granting yourself advancements may be detrimental to the intended experience.** !(https://codeberg.org/trans-fish/trickster/media/branch/mistress/img/spell.png) ## So what can I make? Yes. The spells you can compose are made in a turing-complete tree-like structure, offering complete freedom in creating the results you want. Spells can do literally anything you can imagine*! <sub>*Assumes your imagination is limited by the scope of available glyphs. Library inc. takes no responsibility for overactive imagination or other forms of undue creativity.</sub> !(https://codeberg.org/trans-fish/trickster/media/branch/mistress/img/construct.png) ## That's a pretty bold statement isnt it? Yes it is, but we don't think its unfounded. For one, spells will not stop casting until they are complete, which can, in fact, be never! Spells run concurrently with the rest of the game and can be saved to and loaded from disk at any moment, just like everything else in Minecraft. This means you can leave a spell running, log out, come back two days later, and have it continue where you left off. But also, spells can be infinitely big and complex. While there *is* a limit to the speed spells execute at (to avoid straining the server) the spell itself can be as convoluted or as simple as you want! ## So how do I begin? Well, we've made that part pretty easy. All patterns, items, and blocks are documented in *The Teacher's Language* by Areli Haron, one of the few remnants of an ancient civilization proficient in the arcane. As you discover more about the world, notes will be added to the book reflecting on those discoveries. If preferred, there is also a web book at (https://trickster.ing/). !(https://codeberg.org/trans-fish/trickster/media/branch/mistress/img/book.png) ## What else can I expect? As any good magic mod should, we provide a solid selection of tools and trinkets to facilitate spell composition and casting. !(https://codeberg.org/trans-fish/trickster/media/branch/mistress/img/items.png) ## Functional as in Functional Programming For the more programming-minded, the spellcasting system in this mod can be described as tree-based functional programming, most closely resembling a Lisp. This means a few things: - Data is immutable. - Recursion is not only possible, but also the main way to achieve loop-like behaviour. - Which also means infinite (and even mutual!) recursion via Tail-Call Optimization. - Data can only move up the tree from one node to the next. - Though various flow control options exist to overcome this limitation. This combines with other functional paradigms to create a very clean, but powerful scripting language. ## Credits Some of the item textures are courtesy of @midnightcartridge on Discord. Thanks to @crephan as well for help with a bunch of item textures and models. This mod was originally made for (https://modfest.net/carnival), but has since been further developed far beyond its original scope.

# Trickster

[discord-plural](https://discord.gg/WcYsDDQtyR) [kofi-singular](https://ko-fi.com/enjarai) [fabric-api](https://modrinth.com/mod/fabric-api) [fabric-api](https://modrinth.com/mod/cicada)

[![](https://i.enjarai.dev/u/P9BQxO.png)](https://modfest.net/carnival)

[//]: # ([fabric-api](https://modrinth.com/mod/owo-lib))

Trickster is an esolang-based magic mod loosely inspired by (https://modrinth.com/mod/hex-casting). Equipped with a book written by an ancient arcane scholar, learn to compose spells which create magical effects as simple or complex as you want.

Trickster's progression is heavily knowledge-based. Looking through the creative tab or granting yourself advancements may be detrimental to the intended experience.

!(https://codeberg.org/trans-fish/trickster/media/branch/mistress/img/spell.png)

## So what can I make?

The spells you can compose are made in a turing-complete tree-like structure, offering complete freedom in creating the results you want. Spells can do literally anything you can imagine!

Assumes your imagination is limited by the scope of available glyphs. Library inc. takes no responsibility for overactive imagination or other forms of undue creativity.

!(https://codeberg.org/trans-fish/trickster/media/branch/mistress/img/construct.png)

## That's a pretty bold statement isnt it?

Yes it is, but we don't think its unfounded.

For one, spells will not stop casting until they are complete, which can, in fact, be never! Spells run concurrently with the rest of the game and can be saved to and loaded from disk at any moment, just like everything else in Minecraft. This means you can leave a spell running, log out, come back two days later, and have it continue where you left off.

But also, spells can be infinitely big and complex. While there is a limit to the speed spells execute at (to avoid straining the server) the spell itself can be as convoluted or as simple as you want!

## So how do I begin?

Well, we've made that part pretty easy.

All patterns, items, and blocks are documented in The Teacher's Language by Areli Haron, one of the few remnants of an ancient civilization proficient in the arcane. As you discover more about the world, notes will be added to the book reflecting on those discoveries.

If preferred, there is also a web book at (https://trickster.ing/).

!(https://codeberg.org/trans-fish/trickster/media/branch/mistress/img/book.png)

## What else can I expect?

As any good magic mod should, we provide a solid selection of tools and trinkets to facilitate spell composition and casting.

!(https://codeberg.org/trans-fish/trickster/media/branch/mistress/img/items.png)

## Functional as in Functional Programming

For the more programming-minded, the spellcasting system in this mod can be described as tree-based functional programming, most closely resembling a Lisp. This means a few things:

  • Data is immutable.
  • Recursion is not only possible, but also the main way to achieve loop-like behaviour.
  • - Which also means infinite (and even mutual!) recursion via Tail-Call Optimization.
  • Data can only move up the tree from one node to the next.
  • - Though various flow control options exist to overcome this limitation.

This combines with other functional paradigms to create a very clean, but powerful scripting language.

Some of the item textures are courtesy of @midnightcartridge on Discord.

Thanks to @crephan as well for help with a bunch of item textures and models.

This mod was originally made for (https://modfest.net/carnival), but has since been further developed far beyond its original scope.

🤖 AI-enhanced — based on mod data

📊 Mod Details

Game
Minecraft Mods
Author
enjarai
Version
2.0.0-beta.54
Downloads
22,021
Endorsements
201
Category
equipment
Created
6/23/2024
Updated
8/26/2026
Game Versions
1.21.1
Tags
equipment, game-mechanics, magic

🔧 How to Install Minecraft Mods Mods

Download from Modrinth. Use Prism Launcher or drop into your mods folder.

📖 Full step-by-step install guide for Minecraft Mods →

Visit the official mod page for specific installation instructions for this mod.

🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Mods commands, item IDs, and more.

❓ Frequently Asked Questions

Which Minecraft Mods versions does Trickster support?

The author lists 1.21.1. Other versions may work but are untested by the author.

What is the latest version of Trickster?

Version 2.0.0-beta.54, published 2026-08-26 with 22,021 downloads recorded at the source.

Keep browsing — more Minecraft Mods mods await

📋 All Minecraft Mods Mods 🏆 Top 25 📂 More equipment 👤 More by enjarai 🔎 Similar Mods 🌐 Best equipment (All Games) 🔀 Check Compatibility ⚖️ Compare Mods 🆕 New Mods