WoodlandFoxVerses

⭐ — (6 endorsements) 📥 38,614 downloads 📌 v1.2.0-neoforge+mc1.21.1 📅 6/30/2025
🟠 Updated over a year ago

By TartaricAcid · forge

⬇ Download Mod Source: Modrinth ↗ 📅 Updated: 8/23/2025 📅 Created: 6/30/2025
⚠️ Install Order · 2 steps
1🛠️ Forge — Minecraft Forge (mod loader) Download ↗
2🛠️ Fabric — Fabric Loader Download ↗

Install in this order, then this mod last — most mods fail to load without their framework and dependencies in place.

🔍 Analysis

  • 👍 0.0% endorsement rate
  • 🏆 #349 of 386 forge mods in this game by downloads

📋 About This Mod

# Woodland Fox Verses # 林间狐咏 Display various texts such as poetry, vocabulary, math formulas, and more in chat bubbles. > "When the moonlight passes through the pine branches, you may encounter the well-read fox—" !(https://s2.loli.net/2025/07/01/pOgMS1RXdohu84j.jpg) ## Introduction This is an add-on mod for the Minecraft maid mod (Touhou Little Maid Mod) that randomly displays various chat bubbles in-game. Currently integrated content includes: * 300 Tang and Song poems * English vocabulary for junior high, senior high, and CET-4/CET-6 college levels * Classic mathematical formulas ## Acknowledgements * Chat bubble textures generously provided by YSBB * (https://github.com/chinese-poetry/chinese-poetry) * (https://github.com/mahavivo/english-wordlists) * (https://github.com/Warren2060/ChillCalligraphy) * (https://github.com/alerque/libertinus) ## Others * Mathematical formulas are generated by GPT-4.1, and related content can be found in the (https://github.com/TartaricAcid/WoodlandFoxVerses/tree/master/tool) ## KubeJS Support You can now use KubeJS to add game tips: ``` // You need to create JS scripts in the server_scripts directory to add tips // Add tips in all biomes using the addTipInAllBiome method WoodlandFoxVerses.addTipInAllBiome("Press F3 to view coordinates and biome information") // You can add \n for line breaks, and the game will automatically wrap long text WoodlandFoxVerses.addTipInAllBiome("Two roads diverged in a yellow wood,\nAnd sorry I could not travel both") WoodlandFoxVerses.addTipInAllBiome("To be or not to be, that is the question:\n" + "Whether 'tis nobler in the mind to suffer the slings and arrows of outrageous fortune,\n" + "Or to take arms against a sea of troubles and by opposing end them.") // Add tips in specific biomes using the addTipInBiome method // The second biome parameter can be a biome ID or biome tag WoodlandFoxVerses.addTipInBiome("This is the Nether Wastes, featuring vast lava seas and scattered glowstone clusters", "minecraft:nether_wastes") // Don't forget that tags need to start with # WoodlandFoxVerses.addTipInBiome("You are in a plains biome where villages can generate", "#minecraft:has_structure/village_plains") // Of course, the chat bubble background is also customizable. You can reference existing textures for customization (using nine-slice mechanism) // Textures need the full path with .png extension WoodlandFoxVerses.addTipInAllBiomeWithBg("This is a tip with custom background", "woodlandfoxverses:textures/verses.png") // Since the Woodland Fox Verses mod adds math formulas, English words, and classical poetry by default // Some people might just want to use it for game tips, so we also provide KJS interfaces to forcibly disable these features WoodlandFoxVerses.showWords(false) // Disable English word display WoodlandFoxVerses.showPoetry(false) // Disable classical poetry display WoodlandFoxVerses.showMathFormula(false) // Disable math formula display // You can also forcibly specify the bubble display duration and frequency WoodlandFoxVerses.bubbleAddInterval(60) // Attempt to display a bubble every 60 ticks WoodlandFoxVerses.bubbleShowDuration(40) // Each bubble disappears after displaying for 40 ticks ```

# Woodland Fox Verses

Display various texts such as poetry, vocabulary, math formulas, and more in chat bubbles.

> "When the moonlight passes through the pine branches, you may encounter the well-read fox—"

!(https://s2.loli.net/2025/07/01/pOgMS1RXdohu84j.jpg)

## Introduction

This is an add-on mod for the Minecraft maid mod (Touhou Little Maid Mod) that randomly displays various chat bubbles in-game. Currently integrated content includes:

300 Tang and Song poems English vocabulary for junior high, senior high, and CET-4/CET-6 college levels Classic mathematical formulas

## Acknowledgements

Chat bubble textures generously provided by YSBB (https://github.com/chinese-poetry/chinese-poetry) (https://github.com/mahavivo/english-wordlists) (https://github.com/Warren2060/ChillCalligraphy) (https://github.com/alerque/libertinus)

* Mathematical formulas are generated by GPT-4. 1, and related content can be found in the (https://github.com/TartaricAcid/WoodlandFoxVerses/tree/master/tool)

## KubeJS Support

You can now use KubeJS to add game tips:

``` // You need to create JS scripts in the server_scripts directory to add tips

// Add tips in all biomes using the addTipInAllBiome method WoodlandFoxVerses.addTipInAllBiome("Press F3 to view coordinates and biome information")

// You can add \n for line breaks, and the game will automatically wrap long text WoodlandFoxVerses.addTipInAllBiome("Two roads diverged in a yellow wood,\nAnd sorry I could not travel both") WoodlandFoxVerses.addTipInAllBiome("To be or not to be, that is the question:\n" + "Whether 'tis nobler in the mind to suffer the slings and arrows of outrageous fortune,\n" + "Or to take arms against a sea of troubles and by opposing end them.")

// Add tips in specific biomes using the addTipInBiome method // The second biome parameter can be a biome ID or biome tag WoodlandFoxVerses.addTipInBiome("This is the Nether Wastes, featuring vast lava seas and scattered glowstone clusters", "minecraft:nether_wastes") // Don't forget that tags need to start with # WoodlandFoxVerses.addTipInBiome("You are in a plains biome where villages can generate", "#minecraft:has_structure/village_plains")

// Of course, the chat bubble background is also customizable. You can reference existing textures for customization (using nine-slice mechanism) // Textures need the full path with .png extension WoodlandFoxVerses.addTipInAllBiomeWithBg("This is a tip with custom background", "woodlandfoxverses:textures/verses.png")

// Since the Woodland Fox Verses mod adds math formulas, English words, and classical poetry by default // Some people might just want to use it for game tips, so we also provide KJS interfaces to forcibly disable these features WoodlandFoxVerses.showWords(false) // Disable English word display WoodlandFoxVerses.showPoetry(false) // Disable classical poetry display WoodlandFoxVerses.showMathFormula(false) // Disable math formula display

// You can also forcibly specify the bubble display duration and frequency WoodlandFoxVerses.bubbleAddInterval(60) // Attempt to display a bubble every 60 ticks WoodlandFoxVerses.bubbleShowDuration(40) // Each bubble disappears after displaying for 40 ticks ```

🤖 AI-enhanced — based on mod data

📊 Mod Details

Game
Minecraft Mods
Author
TartaricAcid
Version
1.2.0-neoforge+mc1.21.1
Downloads
38,614
Endorsements
6
Category
forge
Created
6/30/2025
Updated
8/23/2025
Game Versions
1.21.1
Tags
utility

🔧 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 WoodlandFoxVerses support?

The author lists 1.21.1. Other versions may work but are untested by the author.

What is the latest version of WoodlandFoxVerses?

Version 1.2.0-neoforge+mc1.21.1, published 2025-08-23 with 38,614 downloads recorded at the source.

Keep browsing — more Minecraft Mods mods await

📋 All Minecraft Mods Mods 🏆 Top 25 📂 More forge 👤 More by TartaricAcid 🔎 Similar Mods 🌐 Best forge (All Games) 🔀 Check Compatibility ⚖️ Compare Mods 🆕 New Mods