CobbleDollars [Cobblemon Addon]

CobbleDollars [Cobblemon Addon]

v2.0.0+Beta-6.1
Modrinth 280 подписчики Загрузок: 6 740 669
от Hazuriel
Войти

CobbleDollars adds Money and Merchants to Cobblemon

Товар

О товаре

This mod adds money and Merchants for Cobblemon.

Dependencies:

If you'd like to support me, I have a Patreon <3.

Feel free to add my mods to your modpacks!

How to use the mod

  • To earn money you have to kill wild pokémons, you'll earn a certain amount depending on their level.
  • The merchant spawns in overworld villages, just like vanilla villagers (~8%).
  • Vanilla Villagers can obtain the CobbleMerchant profession with a Display Case block from Cobblemon
  • The merchant follow the player if you hold a pokéball.
  • CobbleMerchant

The Merchant Menus

The Shop

  • By Right Clicking the merchant:
  • The Shop
  • You can scroll in the list, search for items, set the amount (MAX 256) and click the Buy button (you can see the total price on the right of the preview item) ! (if you don't have enough CobbleDollars the price will be red)
  • You can switch between the configured tabs, each one offer different items.

The Bank

  • By Shift + Right Clicking the merchant:
  • The Bank
  • You can insert any items allowed by the config in the bank inventory, the merchant will buy the items for the configured price (by default 1 Emerald = 500 CobbleDollars).

Configuration

The configuration files are located under "[Minecraft files or Server location]\config\cobbledollars\"

Client

You can choose the position of the money overlay:
- top left
- top right
- bottom left
- bottom right (default)

Common

Shop

You can configure which items the merchant sells, for example:

2.X.X:

{
  &quot;defaultShop&quot;: [
    {
      &quot;Poké Balls&quot;: [
        {
          &quot;item&quot;: &quot;cobblemon:poke_ball&quot;,
          &quot;price&quot;: 2000
        }
      ]
    },
    {
      &quot;Items&quot;: [
        {
          &quot;item&quot;: &quot;minecraft:stick&quot;,
          &quot;price&quot;: 250000
        },
        {
          &quot;item&quot;: &quot;create:cogwheel&quot;,
          &quot;price&quot;: 100
        }
      ]
    }
  ]
}

1.5.X:

{
  &quot;merchantShop&quot;: {
    &quot;balls&quot;: {
      &quot;cobblemon:poke_ball&quot;: 2000
    },
    &quot;items&quot;: {
      &quot;minecraft:stick&quot;: 250000,
      &quot;create:cogwheel&quot;: 100
    }
  }
}

Before 1.5:

{
  &quot;merchantBalls&quot;: {
    &quot;cobblemon:poke_ball&quot;: 2000
  },
  &quot;merchantItems&quot;: {
    &quot;minecraft:stick&quot;: 250000,
    &quot;create:cogwheel&quot;: 100
  }
}

Here they will sell
- Pokéballs for 2k CobbleDollars each under the category "Balls"
- Sticks for 250k CobbleDollars each and Cogwheels from the mod Create for 100 CobbleDollars each under the category "Items"

Bank

You can configure the items accepted in the bank and for what price:

2.X.X:

{
  &quot;bank&quot;: [
    {
      &quot;item&quot;: &quot;minecraft:emerald&quot;,
      &quot;price&quot;: 500
    },
    {
      &quot;item&quot;: &quot;cobblemon:red_apricorn&quot;,
      &quot;price&quot;: 2500
    }
  ]
}

1.5.X:

{
  &quot;bankItems&quot;: {
    &quot;minecraft:emerald&quot;: 500,
    &quot;cobblemon:red_apricorn&quot;: 2500
  }
}

Here the bank accept
- Emeralds for 500 CobbleDollars each
- Red Apricorns for 2.5k each

You can even put items from other mods.

Permissions

  • cobbledollars
  • cobbledollars.reload
  • cobbledollars.leaderboard
  • cobbledollars.leaderboard.update
  • cobbledollars.cobbledollars
  • cobbledollars.cobbledollars.give
  • cobbledollars.cobbledollars.pay
  • cobbledollars.cobbledollars.query
  • cobbledollars.cobbledollars.remove
  • cobbledollars.cobbledollars.set
  • cobbledollars.cobblemerchant
  • cobbledollars.cobblemerchant.edit
  • cobbledollars.cobblemerchant.open
  • cobbledollars.cobblemerchant.open.bank
  • cobbledollars.cobblemerchant.open.shop
Превью

Изображения товара

Окружение

Требования и совместимость

Совместимость и требования

FabricForgeNeoforge1.20.11.21.1

Локальный хост

Required

Хостинг на сервисах

Required

Условия

Лицензия

Условия использования, изменения и распространения этого товара.

LicenseRef-All-Rights-ReservedModrinth
Релиз

Последний релиз

v2.0.0+Beta-6.1

22.07.2026 · Modrinth

⚠️ Important

This update introduces a new Shop/Bank serialization format.
Your existing data should automatically migrate, but migration issues are always possible.

Before updating, it is strongly recommended to:
* Create a backup of your world.
* Create a backup of your configuration files.

This update may affect:
* Merchant shops stored on entities
* Shop configuration files
* Bank configuration files

Changed

  • Renamed the bank config: bank.json ->...