An open API service indexing awesome lists of open source software.

https://github.com/squigglesdev/snowballspleef

A configurable server-side mod that brings back the Tumble functionality of snowballs from Legacy Console Edition.
https://github.com/squigglesdev/snowballspleef

fabric-mod fabricmc minecraft minecraft-mod minigame spleef tumble-minigame

Last synced: 3 months ago
JSON representation

A configurable server-side mod that brings back the Tumble functionality of snowballs from Legacy Console Edition.

Awesome Lists containing this project

README

          

# ![Snowball Spleef](https://cdn.modrinth.com/data/cached_images/bd4ae5602fffc28590dbca7771ebf5a5f345abe5.png)
A configurable server-side mod that reinstates the Tumble functionality of snowballs from Legacy Console Edition.


Modrinth
     
Fabric API

## Features

### Configurable block destroy list

Server admins can, using the `/snowball` command, specify a list of blocks that can be destroyed by snowballs:
```mcfunction
snowball add stone
```
```
>> Added block stone to breakable list
```

```mcfunction
snowball remove stone
```
```
>> Removed block stone from breakable list
```

```mcfunction
snowball list
```
```
>> The current breakable blocks are: stone, grass_block, ice
```

### Ignite TNT

Server admins can also specify if snowballs ignite TNT, similar to the original minigame:

```mcfunction
snowball ignitesTNT true
```
```
>> SnowballsIgniteTNT set to true
```

```mcfunction
snowball ignitesTNT false
```
```
>> SnowballsIgniteTNT set to false
```

### Hurt Players

Server admins can also specify if snowballs deal a small amount of damage and knockback to players:
```mcfunction
snowball damagePlayers true
```
```
>> SnowballsDamagePlayers set to true
```

```mcfunction
snowball damagePlayers false
```
```
>> SnowballsDamagePlayers set to false
```