Mod

Xiyu's Lucky Block

Quick rating

Xiyu's Lucky Block

No reviews yet

A highly customizable lucky block module provides a lucky block API for making attachments and a convenient method for customizing data packages.

QoL & Tweaks
Mod Loaders
Forge
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

About

Project Details

Type
Mod
Latest Version
luckyblocks-1.20.1-1.0.1.jar
Authors

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID

Resources

External Links

Source Issues Wiki Discord

About

Description

Lucky Block Mod

Discord

Features

  1. Event Handler Module

    • Allows users to define various events in lucky_functions.json file to trigger when lucky blocks are mined
  2. Loot Handler Module

    • Supports obtaining items from any loot table in any data pack
  3. Structure Module

    • Supports loading and generating structures from any data pack
  4. Data Pack Support

  5. Example Block

    • Provides example lucky blocks
    • Lucky value range: 0-200
    • Higher numbers are more likely to trigger lucky effects

API Documentation

Creating Custom Lucky Blocks

  1. Extend Base Lucky Block Class
public class CustomLuckyBlock extends BaseLuckyBlock {
    public CustomLuckyBlock() {
        super(); // Use default properties
    }
}
  1. Customize Block Properties
public class CustomLuckyBlock extends BaseLuckyBlock {
    public CustomLuckyBlock() {
        super(Properties.of()
            .strength(1.0f)
            .sound(SoundType.WOOD)
            // Other properties...
        );
    }
}
  1. Custom Break Effect
@Override
protected void onLuckyBlockBreak(Level level, BlockPos pos, BlockState state, Player player) {
    if (level instanceof ServerLevel serverLevel) {
        // Get lucky value
        int luckyValue = state.getValue(LUCKY);

        // Load and execute effects
        List<LuckyFunctionConfig> configs = LuckyConfigLoader.loadLuckyFunctions(serverLevel, luckyValue);
        if (!configs.isEmpty()) {
            LuckyFunctionConfig config = configs.get(level.random.nextInt(configs.size()));
            JsonObject effect = config.getRandomEffect();
            if (effect != null) {
                executeEffect(new Effect(effect), serverLevel, pos, player, luckyValue);
            }
        }
    }
}

Overridable Methods

  • onLuckyBlockBreak(Level level, BlockPos pos, BlockState state, Player player): Handle block break event
  • onRedStoneActivate(ServerLevel level, BlockPos pos, BlockState state): Handle redstone activation event
  • executeEffect(Effect effect, ServerLevel level, BlockPos pos, @Nullable Player player, int luckyValue): Execute effects

Lucky Value Description

  • Range: 0-200
  • Get method: state.getValue(LUCKY)
  • Default generation: Randomly generates value 0-200 when placed

Trigger Methods

  1. Break Trigger

    • Triggers effect when player breaks the block
  2. Redstone Trigger

    • Triggers effect when receiving redstone signal

Usage Instructions

Configuration File Format

{
  "lucky_functions": [
    {
      "id": "luckyblocks:spawn_items",
      "enabled": true,
      "items": [
        {
          "loot_table": "minecraft:chests/simple_dungeon",
          "enabled": true,
          "count": 1
        },
        {
          "loot_table": "minecraft:chests/desert_pyramid",
          "enabled": false
        }
      ]
    },
    {
      "id": "luckyblocks:spawn_structure",
      "enabled": true,
      "structures": [
        {
          "structure": "minecraft:village/plains/houses/plains_small_house_1",
          "enabled": true,
          "rotation": "NONE"
        }
      ]
    }
  ],
  "unlucky_functions": [
    {
      "id": "luckyblocks:explosion",
      "enabled": true,
      "effects": [
        {
          "power": 4,
          "enabled": true,
          "fire": false
        },
        {
          "power": 8,
          "fire": true,
          "enabled": false
        }
      ]
    },
    {
      "id": "luckyblocks:spawn_mob",
      "enabled": true,
      "mobs": [
        {
          "type": "minecraft:creeper",
          "enabled": true,
          "charged": true,
          "count": 1
        },
        {
          "type": "minecraft:zombie",
          "enabled": true,
          "baby": true,
          "equipment": {
            "mainhand": "minecraft:diamond_sword"
          }
        }
      ]
    }
  ]
}

Configuration Description

  1. Function Structure

    • Each function has a unique id and enabled status
    • Functions can contain multiple sub-functions, each can be enabled/disabled individually
  2. Built-in Functions

    • spawn_items: Generate items (from loot tables)
      • loot_table: Loot table path
      • count: Generation count
    • spawn_structure: Generate structures
      • structure: Structure path
      • rotation: Rotation direction (NONE, CLOCKWISE_90, CLOCKWISE_180, COUNTERCLOCKWISE_90)
    • explosion: Create explosions
      • power: Explosion power
      • fire: Whether to create fire
    • spawn_mob: Spawn entities
      • type: Entity type
      • count: Spawn count
      • charged: Whether charged (Creeper specific)
      • baby: Whether baby
      • equipment: Equipment configuration
  3. Sub-function Configuration

    • Each sub-function must have an enabled property
    • Can include additional properties specific to the function
    • Supports condition configuration and random weights (to be implemented)

Data Pack Customization

WIKI-DataPack

Screenshots

Gallery

This project has no gallery images yet.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

~1,000
Downloads
Last Updated
Created
Last synced
When ModDex last fetched and imported data for this project from CurseForge or Modrinth. High-traffic and active projects are checked more often.
Next pipeline sync