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.
- Host: GitHub
- URL: https://github.com/squigglesdev/snowballspleef
- Owner: squigglesdev
- License: mit
- Created: 2024-06-03T20:18:11.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-05T19:11:34.000Z (almost 2 years ago)
- Last Synced: 2025-02-03T23:56:42.941Z (about 1 year ago)
- Topics: fabric-mod, fabricmc, minecraft, minecraft-mod, minigame, spleef, tumble-minigame
- Language: Java
- Homepage: https://modrinth.com/mod/snowball-spleef
- Size: 62.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 
A configurable server-side mod that reinstates the Tumble functionality of snowballs from Legacy Console Edition.
## 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
```

