{"id":129434,"date":"2026-06-07T17:56:57","date_gmt":"2026-06-07T14:56:57","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/rc-cooldown\/"},"modified":"2026-06-07T17:56:57","modified_gmt":"2026-06-07T14:56:57","slug":"rc-cooldown","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/rc-cooldown\/","title":{"rendered":"RC CoolDown"},"content":{"rendered":"<p># RC Cooldown &#8211; Advanced Item Cooldown Management Plugin<\/p>\n<p>## \ud83d\udccb Overview<\/p>\n<p>**RC Cooldown** is a powerful and flexible Spigot plugin that allows server administrators to set custom cooldowns on any Minecraft items, weapons, and enchantments. With support for multiple languages, visual cooldown animations, and intelligent use detection, this plugin provides a comprehensive solution for balancing gameplay and preventing item spam.<\/p>\n<p>## \u2728 Features<\/p>\n<p>&#8211; **Universal Item Support**: Set cooldowns on any Minecraft item, weapon, or enchantment<br \/>\n&#8211; **Smart Use Detection**: Automatically detects item usage type (interact, consume, attack) and applies cooldowns accordingly<br \/>\n&#8211; **Visual Cooldown Animation**: Native Minecraft cooldown animation (like Ender Pearls) that matches your configured duration<br \/>\n&#8211; **Enchantment Support**: Set cooldowns on enchantments like Riptide, Channeling, and more<br \/>\n&#8211; **Multi-Language Support**: Built-in translations for English, Russian, Ukrainian, Spanish, and German<br \/>\n&#8211; **Click Type Configuration**: Choose between right-click or left-click activation for each item<br \/>\n&#8211; **Anti-Spam Protection**: Cooldown messages are rate-limited to prevent chat spam (max once per 3 seconds)<br \/>\n&#8211; **Easy Configuration**: Simple YAML configuration with default examples<br \/>\n&#8211; **Admin Commands**: Full command suite for managing cooldowns without editing config files<br \/>\n&#8211; **Automatic Reload**: Hot-reload configuration without server restart<\/p>\n<p>## \ud83c\udfaf Use Cases<\/p>\n<p>&#8211; **PvP Servers**: Balance powerful items like Golden Apples, Ender Pearls, and weapons<br \/>\n&#8211; **Survival Servers**: Prevent item spam and create strategic gameplay<br \/>\n&#8211; **Minigame Servers**: Control item usage in custom game modes<br \/>\n&#8211; **KitPvP**: Balance kit items with custom cooldowns<br \/>\n&#8211; **Any Server**: Add cooldowns to any item for better gameplay balance<\/p>\n<p>## \ud83d\udce6 Installation<\/p>\n<p>1. Download the latest version of **RC Cooldown** from the releases page<br \/>\n2. Place the `.jar` file into your server&#8217;s `plugins` folder<br \/>\n3. Restart your server or use `\/reload` command<br \/>\n4. Configure the plugin by editing `plugins\/RCCooldown\/config.yml`<br \/>\n5. Use `\/rccd reload` to apply changes<\/p>\n<p>## \u2699\ufe0f Config<\/p>\n<p>### Basic Configuration<\/p>\n<p>Open `plugins\/RCCooldown\/config.yml`:<\/p>\n<p>&#8220;`yaml<br \/>\n# Language: EN, RU, UA, ES, DE<br \/>\nlang: EN<\/p>\n<p>items:<br \/>\n  # Enchantments<br \/>\n  enchantment:riptide:<br \/>\n    enable: true<br \/>\n    cooldown: 15<br \/>\n    click_type: right_click<\/p>\n<p>  # Items<br \/>\n  ENDER_PEARL:<br \/>\n    enable: true<br \/>\n    cooldown: 20<br \/>\n    click_type: right_click<br \/>\n  GOLDEN_APPLE:<br \/>\n    enable: true<br \/>\n    cooldown: 5<br \/>\n    click_type: right_click<br \/>\n&#8220;`<\/p>\n<p>### Configuration Options<\/p>\n<p>&#8211; **lang**: Language for plugin messages (EN, RU, UA, ES, DE)<br \/>\n&#8211; **enable**: Enable or disable cooldown for this item (true\/false)<br \/>\n&#8211; **cooldown**: Cooldown duration in seconds<br \/>\n&#8211; **click_type**: Mouse click type (`right_click` or `left_click`)<\/p>\n<p>## \ud83d\udcdd Adding Items<\/p>\n<p>### Method 1: Edit Config File<\/p>\n<p>1. Open `plugins\/RCCooldown\/config.yml`<br \/>\n2. Add your item under the `items:` section:<\/p>\n<p>&#8220;`yaml<br \/>\nitems:<br \/>\n  DIAMOND_SWORD:<br \/>\n    enable: true<br \/>\n    cooldown: 10<br \/>\n    click_type: right_click<br \/>\n&#8220;`<\/p>\n<p>3. Save the file and run `\/rccd reload`<\/p>\n<p>### Method 2: Use Commands (Recommended)<\/p>\n<p>Use the `\/rccd add` command to add items directly in-game:<\/p>\n<p>&#8220;`<br \/>\n\/rccd add <item_id> <click_type> <seconds><br \/>\n&#8220;`<\/p>\n<p>**Examples:**<br \/>\n&#8220;`<br \/>\n\/rccd add DIAMOND_SWORD right_click 10<br \/>\n\/rccd add riptide right_click 15<br \/>\n\/rccd add BOW left_click 5<br \/>\n&#8220;`<\/p>\n<p>### Adding Enchantments<\/p>\n<p>To add enchantments, simply use the enchantment name:<\/p>\n<p>&#8220;`<br \/>\n\/rccd add riptide right_click 15<br \/>\n\/rccd add channeling right_click 10<br \/>\n&#8220;`<\/p>\n<p>The plugin automatically detects if an ID is an item or enchantment &#8211; no prefix needed!<\/p>\n<p>### Finding Item IDs<\/p>\n<p>&#8211; Use `\/rccd list` to see all active cooldowns<br \/>\n&#8211; Minecraft item IDs are in UPPERCASE_WITH_UNDERSCORES format (e.g., `DIAMOND_SWORD`, `GOLDEN_APPLE`)<br \/>\n&#8211; Enchantment names are lowercase (e.g., `riptide`, `channeling`)<\/p>\n<p>## \ud83c\udfae Commands<\/p>\n<p>| Command | Description | Permission |<br \/>\n|&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;&#8212;|<br \/>\n| `\/rccd reload` | Reload plugin configuration | `rccd.admin` (OP by default) |<br \/>\n| `\/rccd list` | List all active cooldowns | `rccd.admin` (OP by default) |<br \/>\n| `\/rccd add <id> <click_type> <seconds>` | Add a new cooldown | `rccd.admin` (OP by default) |<br \/>\n| `\/rccd delete <id>` | Remove a cooldown | `rccd.admin` (OP by default) |<\/p>\n<p>### Command Examples<\/p>\n<p>&#8220;`<br \/>\n\/rccd reload                    # Reload configuration<br \/>\n\/rccd list                      # Show all active cooldowns<br \/>\n\/rccd add MACE right_click 5    # Add 5-second cooldown to Mace<br \/>\n\/rccd delete ENDER_PEARL        # Remove Ender Pearl cooldown<br \/>\n&#8220;`<\/p>\n<p>## \ud83c\udf0d Languages<\/p>\n<p>The plugin supports 5 languages:<\/p>\n<p>&#8211; **EN** &#8211; English<br \/>\n&#8211; **RU** &#8211; Russian (\u0420\u0443\u0441\u0441\u043a\u0438\u0439)<br \/>\n&#8211; **UA** &#8211; Ukrainian (\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0430)<br \/>\n&#8211; **ES** &#8211; Spanish (Espa\u00f1ol)<br \/>\n&#8211; **DE** &#8211; German (Deutsch)<\/p>\n<p>Change language in `config.yml`:<br \/>\n&#8220;`yaml<br \/>\nlang: RU  # Change to your preferred language<br \/>\n&#8220;`<\/p>\n<p>Language files are automatically created in `plugins\/RCCooldown\/lang\/` folder.<\/p>\n<p>## \ud83d\udd27 Mechanics<\/p>\n<p>### Smart Use Detection<\/p>\n<p>The plugin automatically detects how items are used:<\/p>\n<p>&#8211; **Food\/Consumables**: Cooldown activates after consumption<br \/>\n&#8211; **Weapons**: Cooldown activates after successful attack<br \/>\n&#8211; **Enchantments**: Cooldown activates after successful enchantment use (e.g., Riptide only activates when player actually flies)<br \/>\n&#8211; **Other Items**: Cooldown activates after successful interaction<\/p>\n<p>### Visual Cooldown<\/p>\n<p>&#8211; Native Minecraft cooldown animation appears in the inventory<br \/>\n&#8211; Animation duration matches your configured cooldown time<br \/>\n&#8211; Works exactly like Ender Pearl cooldown animation<br \/>\n&#8211; Cooldown does not reset or update during active cooldown<\/p>\n<p>### Anti-Spam Protection<\/p>\n<p>&#8211; Cooldown messages are limited to once per 3 seconds<br \/>\n&#8211; Prevents chat spam when players repeatedly click items on cooldown<br \/>\n&#8211; Item usage is still blocked, but messages are rate-limited<\/p>\n<p>## \ud83d\udca1 Benefits<\/p>\n<p>### 1. **Flexibility**<br \/>\n&#8211; Works with ANY Minecraft item, weapon, or enchantment<br \/>\n&#8211; No need to modify server code or use complex plugins<br \/>\n&#8211; Easy to add or remove cooldowns<\/p>\n<p>### 2. **Smart Detection**<br \/>\n&#8211; Automatically detects item usage type<br \/>\n&#8211; No manual configuration needed for different item types<br \/>\n&#8211; Handles special cases like Riptide enchantment correctly<\/p>\n<p>### 3. **User-Friendly**<br \/>\n&#8211; Visual cooldown animation for better UX<br \/>\n&#8211; Multi-language support for international servers<br \/>\n&#8211; Clear, informative messages<\/p>\n<p>### 4. **Performance**<br \/>\n&#8211; Lightweight and optimized<br \/>\n&#8211; No performance impact on server<br \/>\n&#8211; Efficient cooldown tracking<\/p>\n<p>### 5. **Easy Management**<br \/>\n&#8211; In-game commands for all operations<br \/>\n&#8211; No server restart needed for changes<br \/>\n&#8211; Simple YAML configuration<\/p>\n<p>### 6. **Professional Features**<br \/>\n&#8211; Rate-limited messages prevent spam<br \/>\n&#8211; Proper event handling prevents exploits<br \/>\n&#8211; Reliable cooldown tracking<\/p>\n<p>## \ud83d\udccb Defaults<\/p>\n<p>The plugin comes with pre-configured cooldowns for popular items:<\/p>\n<p>&#8211; **Riptide** (enchantment): 15 seconds<br \/>\n&#8211; **Ender Pearl**: 20 seconds<br \/>\n&#8211; **Golden Apple**: 5 seconds<br \/>\n&#8211; **Enchanted Golden Apple**: 30 seconds<br \/>\n&#8211; **Firework Rocket**: 3 seconds<br \/>\n&#8211; **Mace**: 5 seconds<\/p>\n<p>You can modify or remove these as needed.<\/p>\n<p>## \ud83d\udc1b Troubleshooting<\/p>\n<p>### Cooldown not working?<br \/>\n&#8211; Make sure `enable: true` in config<br \/>\n&#8211; Check that cooldown value is greater than 0<br \/>\n&#8211; Verify correct `click_type` (right_click\/left_click)<br \/>\n&#8211; Run `\/rccd reload` after config changes<\/p>\n<p>### Messages not in my language?<br \/>\n&#8211; Check `lang:` setting in config.yml<br \/>\n&#8211; Verify language file exists in `plugins\/RCCooldown\/lang\/`<br \/>\n&#8211; Run `\/rccd reload` after changing language<\/p>\n<p>### Item not found when adding?<br \/>\n&#8211; Use correct item ID format (UPPERCASE_WITH_UNDERSCORES)<br \/>\n&#8211; For enchantments, use lowercase name (e.g., `riptide`, not `RIPTIDE`)<br \/>\n&#8211; Check spelling &#8211; use `\/rccd list` to see examples<\/p>\n<p>## \ud83d\udcc4 Permissions<\/p>\n<p>&#8211; `rccd.admin` &#8211; Access to all `\/rccd` commands (OP by default)<\/p>\n<p>## \ud83d\udd04 Updates<\/p>\n<p>The plugin is actively maintained and updated. Check the releases page for:<br \/>\n&#8211; Bug fixes<br \/>\n&#8211; New features<br \/>\n&#8211; Performance improvements<br \/>\n&#8211; Additional language support<\/p>\n<p>## \ud83d\udcde Support<\/p>\n<p>For support, bug reports, or feature requests, please visit the plugin&#8217;s page on Discord.<\/p>\n<p>## \ud83d\udcdc License<\/p>\n<p>This plugin is provided as-is for use on Minecraft servers.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>RC Cooldown is a powerful and flexible Spigot plugin that allows server administrators to set custom cooldowns on any Minecraft items, weapons, and enchantments.<\/p>\n","protected":false},"featured_media":129435,"template":"","meta":{"_minecraft_slug":"rc-cooldown","_minecraft_project_id":"gubsgxLU","_minecraft_author":"rocketsops","_minecraft_license":"LicenseRef-All-Rights-Reserved","_minecraft_downloads":186,"_minecraft_follows":0,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"rc-cooldown.zip","_minecraft_size_bytes":68456,"_minecraft_version_count":2,"_minecraft_updated_at":"2026-05-16T12:57:52.376615Z","_minecraft_date_created":"2026-01-24T22:51:30.984788Z","_minecraft_date_modified":"2026-03-14T20:34:20.152750Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/rc-cooldown","_minecraft_icon_attachment_id":129435,"_minecraft_imported_at":"2026-06-07T14:56:58+00:00","_minecraft_import_hash":"d2c9d5ef93a30bbb7435cd4377992a97","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,126,90,127,129,123,92],"mod_loader":[130,132,134],"minecraft_version":[62,37,40,41,73,74,38,78,79,80,81,82],"class_list":["post-129434","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-bukkit","mod_category-management","mod_category-optimization","mod_category-paper","mod_category-spigot","mod_category-technology","mod_category-utility","mod_loader-bukkit","mod_loader-paper","mod_loader-spigot","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-10","minecraft_version-1-21-11","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8","minecraft_version-1-21-9"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>RC CoolDown - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/rc-cooldown\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"RC CoolDown - Minecraft\" \/>\n<meta property=\"og:description\" content=\"RC Cooldown is a powerful and flexible Spigot plugin that allows server administrators to set custom cooldowns on any Minecraft items, weapons, and enchantments.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/rc-cooldown\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/rc-cooldown\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/rc-cooldown\\\/\",\"name\":\"RC CoolDown - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/rc-cooldown\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/rc-cooldown\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/rc-cooldown-icon-76f3d84c480986addc70f0fdbf668e887ddcf226_96.webp\",\"datePublished\":\"2026-06-07T14:56:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/rc-cooldown\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/rc-cooldown\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/rc-cooldown\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/rc-cooldown-icon-76f3d84c480986addc70f0fdbf668e887ddcf226_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/rc-cooldown-icon-76f3d84c480986addc70f0fdbf668e887ddcf226_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/rc-cooldown\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"RC CoolDown\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"RC CoolDown - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/rc-cooldown\/","og_locale":"en_US","og_type":"article","og_title":"RC CoolDown - Minecraft","og_description":"RC Cooldown is a powerful and flexible Spigot plugin that allows server administrators to set custom cooldowns on any Minecraft items, weapons, and enchantments.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/rc-cooldown\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/rc-cooldown\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/rc-cooldown\/","name":"RC CoolDown - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/rc-cooldown\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/rc-cooldown\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/rc-cooldown-icon-76f3d84c480986addc70f0fdbf668e887ddcf226_96.webp","datePublished":"2026-06-07T14:56:57+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/rc-cooldown\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/rc-cooldown\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/rc-cooldown\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/rc-cooldown-icon-76f3d84c480986addc70f0fdbf668e887ddcf226_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/rc-cooldown-icon-76f3d84c480986addc70f0fdbf668e887ddcf226_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/rc-cooldown\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"RC CoolDown"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/129434","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/129435"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=129434"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=129434"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=129434"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=129434"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}