Temporal API
⚪ Last updated 2024⚠️ Install Order · 2 steps
Install in this order, then this mod last — most mods fail to load without their framework and dependencies in place.
Preview

🔍 Analysis
- 👍 0.0% endorsement rate
- 🏆 #250 of 403 forge mods in this game by downloads
📋 About This Mod
Temporal API is the official library for the Team Temporal mods other projects and modders and modpack creators may use it for their projects as much as they like.
The main goal of this mod is to make creating mods easier and more flexible!
For working with our library you need to go to build.gradle and add this:
``` repositories { maven { url "https://cursemaven.com" } }
dependencies {
implementation fg.deobf("curse.maven:temporalapi-970291:
You need to replace
The library for current state adds
factories, tag utils, creative tab utils, trading with villagers and wanderers customizer, world features utils, item properties utils, fov modifier etc Factory and Extensions Factories are used to create RegistryObject objects and make their creation a lot easier.
For using ItemFactory from API you need to create ItemFactoryFacade class like here:
``` public class ModItemFactoryFacade extends ItemFactory { public ModItemFactoryFacade() { super(ModItems. ITEMS); } } ```
Also you can extend your Factory Facade with Extensions from API or create your own Extension.
Here are 2 examples of using SwordExtension (with this Extension creating of Sword becomes a lot easier):
``` public class ModItemFactoryFacade extends ItemFactory implements SwordExtension { public ModItemFactoryFacade() { super(ModItems. ITEMS); } } ``` Or like this: ``` public class ModItemFactoryFacade extends ItemFactory implements SwordExtension { public ModItemFactoryFacade() { super(ModItems. ITEMS); }
public RegistryObject
public RegistryObject extends SwordItem> createSword(String name, Supplier extends SwordItem> tTypedSupplier) { return SwordExtension.super.createSword(name, this, tTypedSupplier); } } ```
So what about creating our object using this Facade class:
```
public class ModItems {
public static final DeferredRegister
public static final RegistryObject
//First example of creating Facade object from up
public static final RegistryObject
//Second example of creating Facade object from up
public static final RegistryObject
Currently available Factories and extensions:
```
ItemFactory (ArrowExtension, BowExtension, BowlExtension, MusicDiscExtension, SmithingTemplateExtension, SwordExtension, AxeExtension, PickaxeExtension, ShovelExtension, HoeExtension)
BlockFactory (BushExtension, FlowerExtension, PottedFlowerExtension)
ParticleFactory
EffectFactory
PaintingFactory
PotionFactory
SoundEventFactory
CreativeTabFactory
EntityFactory
Tag Utils
Tag utils focus on tag creating and making using tags easier.
```
For example if you want to create item tag you need to use ItemTagFactory:
```
public class MyItemTags {
public static final TagFactory
public static final TagKey
📊 Mod Details
- Game
- Minecraft Mods
- Author
- CyberRat2
- Version
- 1.6.6
- Downloads
- 149,037
- Endorsements
- 8
- Category
- forge
- Created
- 2/22/2024
- Updated
- 6/30/2024
- Game Versions
- 1.20.1, 1.20.2, 1.20.3, 1.20.4, 1.20.5
- Tags
- library
🔧 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 Temporal API support?
The author lists 1.20.1, 1.20.2, 1.20.3, 1.20.4, 1.20.5, 1.20.6. Other versions may work but are untested by the author.
What is the latest version of Temporal API?
Version 1.6.6, published 2024-06-30 with 149,037 downloads recorded at the source.
Keep browsing — more Minecraft Mods mods await