Skip to content

Language

bencrow11 edited this page Sep 26, 2023 · 4 revisions

Default Language Config

{
  "title": "Gts",
  "purchase_message_buyer": "§2You have bought {listing} from {seller}!",
  "cancel_listing": "§6The {listing} listing has been cancelled!",
  "return_listing_success": "§2You have received the {listing} listing!",
  "return_listing_fail": "§cCould not receive the {listing} listing.",
  "maximum_listings": "§cYou can only have a total of {max_listings} listings.",
  "minimum_listing_amount": "§cYour listing must meet the minimum price of {min_price}",
  "maximum_listing_price": "§cYour listing must be below the maximum price of {max_price}",
  "listing_success": "§2Successfully added your {listing} to GTS!",
  "listing_fail": "§cFailed to add your {listing} to GTS!",
  "no_pokemon_in_slot": "§cCould not find any Pokemon in the given slot!",
  "no_item_in_hand": "§cCould not find an item in your hand!",
  "item_is_banned": "§c{listing} is banned from GTS!",
  "not_enough_items": "§cYou don\u0027t have enough {listing} in your inventory to list this item!",
  "no_item_id_found": "§cCould not find an item!",
  "item_amount_is_zero": "§cListing amount can not be zero!",
  "reload_message": "§2Reloaded Configs!",
  "insufficient_funds": "§cYou do not have enough money to purchase this listing!",
  "listing_bought": "§2Your {listing} has been bought by {buyer}",
  "item_listing_display": "cobblemon:assault_vest",
  "pokemon_listing_display": "cobblemon:poke_ball",
  "manage_listing_display": "cobblemon:sachet",
  "expired_listing_display": "cobblemon:link_cable",
  "next_page_display": "minecraft:arrow",
  "previous_page_display": "cobblemon:poison_barb",
  "filler_item": "minecraft:white_stained_glass_pane",
  "purchase_button": "minecraft:green_stained_glass_pane",
  "cancel_button": "minecraft:red_stained_glass_pane",
  "remove_listing_button": "minecraft:orange_stained_glass_pane",
  "sort_price_button": "minecraft:gold_nugget",
  "sort_newest_button": "minecraft:clock",
  "sort_name_button": "minecraft:oak_sign"
}

Language Values

  • title - The title that is shown at the top of all GTS menus.
  • purchase_message_buyer - The message sent to the buyer when purchasing a listing.
  • cancel_listing - The message sent to the owner and person who cancelled a listing.
  • return_listing_success - The message sent when a listing was successfully returned to the player from their expired menu.
  • return_listing_fail - The message sent when a listing could not be returned to the player from their expired menu.
  • maximum_listings - The message when a player tries to list more listings than allowed in the config.
  • minimum_listing_amount - The message when a player tries to list something for less than its minimum price.
  • maximum_listing_price - The message when a player tries to list something for higher than the allowed price in the config.
  • listing_success - The message when a listing was successfully listed.
  • listing_fail - The message when a listing could not be listed.
  • no_pokemon_in_slot - The message when a player tries to create a Pokemon listing with an empty slot.
  • no_item_in_hand - The message when a player tries to create an item listing with an empty hand.
  • item_is_banned - Message sent to the player when the item they try to list is banned.
  • not_enough_items - Message sent to the player when they try to list more of an item than they have.
  • no_item_id_found - The message when an item could not be identified (This shouldn't happen)
  • item_amount_is_zero - Message when a player tries to list an item with an amount of 0.
  • reload_message - Message sent if the reload command was successful.
  • insufficient_funds - Message sent to the player when they try to buy a listing that they can't afford.
  • listing_bought - Message sent to the seller when their listing has been bought.
  • item_listing_display - The material for the "Item Listings" button in the UI.
  • pokemon_listing_display - The material for the "Pokemon Listings" button in the UI.
  • manage_listing_display - The material for the "Manage Listings" button in the UI.
  • expired_listing_display - The material for the "Expired Listings" button in the UI.
  • next_page_display - The material for the "Next Page" button in the UI.
  • previous_page_display - The material for the "Previous Page" button in the UI.
  • filler_item - The material for the filler item in the UI.
  • purchase_button - The material for the purchase button on listings in the UI.
  • cancel_button - The material for the cancel button on listings in the UI.
  • remove_listing_button - The material for the remove button on listings in the UI.
  • sort_price_button - The material for the "Sort by price" button in the UI.
  • sort_newest_button - The material for the "Sort by newest" button in the UI.
  • sort_name_button - The material for the "Sort by name" button in the UI.

Placeholders

Please note that not all placeholders are valid for each message. For example, you can't use a buyer placeholder in a listing message.

  • {listing} - The Pokemon or Item of the listing.
  • {seller} - The seller of the listing.
  • {buyer} - The buyer of the listing.
  • {max_listings} - The amount of listings a player can have.
  • {min_price} - The minimum price of the listing.
  • max_price} - The maximum price of the listing.

Clone this wiki locally