promotional bannermobile promotional banner

Overgrown's Sync

A system for yielding new capabilities. Sync is an addon for the Apoli mod that's used primarily for the Origins mod!

File Details

Sync (1.6.1) [Sources].jar

  • R
  • Jan 18, 2026
  • 229.36 KB
  • 2
  • 1.20.1
  • Fabric

File Name

sync-1.6.1-sources.jar

Supported Versions

  • 1.20.1

Curse Maven Snippet

Fabric

modImplementation "curse.maven:overgrowns-sync-1318541:7484563"
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

  • Added highlight_icon_texture and highlight_button_texture fields to the Radial Menu Entry (Data Type) so now you can set custom textures for when you hover over an entry.
  • Added icon_width, icon_height, item_width, item_height, button_width, and button_height fields to Radial Menu Entries to change the size of the respective elements.
  • Fixed Tooltip not displaying when hovered over custom button
  • Displaying custom textures no longer requires setting the item_stack object
  • Added tooltip field to Radial Menu Entries which accepts the Text Component (Data Type)
  • Added Emissive (Power Type) with optional LambDynamicLights - Dynamic Lights mod dependency
  • Added a sync:summon_minion and sync:summon_clone entity action types
  • Added sync:set_summon_max_life_ticks entity action type
  • Added sync:entity_texture_overlay power type
  • Added mobs_ignore power type:

Mobs Ignore

Power Type

Makes hostile mobs ignore the player.

Type ID: sync:mobs_ignore

Fields

Field Type Default Description
mob_condition Entity Condition optional If set, this will determine what entity condition the entity must meet in order to be effected by this power.
bientity_condition Bi-entity Condition optional If set, this will determine what bi-entity condition the entity must meet in order to be effected by this power.
provokable Boolean true If set to false (or omit it), then mobs will always ignore the player, even if attacked.

Example

{
  "type": "sync:mobs_ignore",
  "mob_condition": {
    "type": "apoli:entity_type",
    "entity_type": "minecraft:skeleton"
  },
  "provokable": false
}

This power causes skeletons to ignore the player.