Want to test out the endgame Grand Oak Bar expansion early? Are you tired of grinding for Ancient Oak Wood, or perhaps you accidentally trashed a critical VIP quest item and now your tavern’s reputation is soft-locked? While Tabletop Tavern runs on the Unity engine and has its native text console locked by the developers, players can still use specific Item IDs to inject items via Unity modding tools (like UnityExplorer) or by directly editing their saveData.json files. Below is the most comprehensive, categorized, and up-to-date list of Item IDs, spawn codes, and perk IDs for Tabletop Tavern, verified for the latest patch.
Quick Reference: Top 10 Most Wanted Tabletop Tavern IDs
If you don’t want to scroll through thousands of rows of Unity asset strings, here are the exact IDs for the most essential and frequently searched items in the game (including Gold, premium building materials, and top-tier ingredients).
| Item Name | Item ID | Category | Effect |
|---|---|---|---|
| Gold Coins | currency_gold | Currency | Used for all tavern upgrades and staff wages. |
| Gems (Premium) | currency_gem_premium | Currency | Skips all brewing and construction wait timers. |
| Ancient Oak Wood | mat_ancient_oak | Material | Required for Tier 4 and Tier 5 bar expansions. |
| Dragon Meat | ingredient_dragon_meat | Consumable | Highest-tier cooking ingredient for Royal VIPs. |
| Master Brewer’s Yeast | ingredient_yeast_master | Consumable | Guarantees a 5-star rating on crafted ales. |
| Legendary Platinum Keg | furn_keg_platinum | Furniture | Increases passive daily income by 300%. |
| Bouncer’s Iron Mace | wpn_bouncer_mace_iron | Weapon | Helps your staff instantly clear out bar brawls. |
| VIP Royal Table | furn_table_royal | Furniture | Attracts wealthy nobles to your establishment. |
| Tavern Expansion Deed | quest_item_expansion_deed | Quest Item | Unlocks the second floor of your pub. |
| Elven Wine | drink_elven_wine_vintage | Consumable | Maxes out customer patience instantly. |
How to Enable the Console & Use Spawn Commands
Because the native developer console is disabled in Tabletop Tavern, you must understand the correct syntax for adding these IDs into your game. You have two methods: using a Unity script injector (like BepInEx + UnityExplorer) or editing your saveData.json.
Method 1: Save File Editing (Recommended for beginners)
%USERPROFILE%\AppData\LocalLow\TabletopTavern\Saves\.{"itemID": "[Item ID]", "quantity": [Quantity]}{"itemID": "currency_gold", "quantity": 5000}.Method 2: UnityExplorer Injection
PlayerInventory.Instance.AddItem("[Item ID]", [Quantity]);Expert Warning
“Manually typing {“itemID”: “ingredient_dragon_meat”, “quantity”: 100} into a JSON file is fine if you only need to do it once. But if you are building a massive multi-story tavern or experimenting with different menu builds, manually typing case-sensitive asset strings becomes incredibly repetitive. One misplaced comma results in a corrupted save file. While the lists below are meticulously verified, I personally switched to a visual UI injector months ago. Seeing the item icon and just clicking ‘Add to Inventory’ is how modern PC modding should feel.”
The Easy Way: XMODhub Visual Spawner (No Typing Required)
Stop Alt-Tabbing to check massive spreadsheets. Digging through JSON files and typing long, case-sensitive ID codes breaks your immersion and wastes time. The XMODhub PC Client includes a dedicated “Visual Item Spawner” feature specifically built for Tabletop Tavern.
Download the XMODhub Visual Spawner for Free
Weapon IDs List (Melee & Ranged)
While Tabletop Tavern is a management game, you still need to equip your Bouncers and hired Adventurers to handle bar brawls and secure rare ingredients from the forest. (JSON Format: {"itemID": "[Weapon ID]", "quantity": 1})
| Weapon Name | Item ID | Damage Type |
|---|---|---|
| Wooden Club | wpn_bouncer_club_wood | Blunt (Low) |
| Iron Mace | wpn_bouncer_mace_iron | Blunt (Medium) |
| Dwarven Warhammer | wpn_bouncer_hammer_dwarf | Blunt (High) |
| Adventurer’s Shortsword | wpn_hero_sword_short | Slashing (Medium) |
| Ranger’s Longbow | wpn_hero_bow_long | Ranged (Medium) |
| Elven Recurve Bow | wpn_hero_bow_elf | Ranged (High) |
Armor & Clothing IDs List
Keep your tavern staff looking professional and your hired adventurers protected with these uniform and armor IDs. (JSON Format: {"itemID": "[Armor ID]", "quantity": 1})
| Item Name | Item ID | Category |
|---|---|---|
| Basic Barkeep Apron | cloth_apron_basic | Staff Uniform |
| Master Brewer’s Robe | cloth_robe_master_brewer | Staff Uniform |
| Maid’s Dress (Classic) | cloth_maid_classic | Staff Uniform |
| Adventurer Leather Vest | armor_hero_leather_chest | Hero Armor |
| Knight’s Iron Plate | armor_hero_plate_iron | Hero Armor |
| Royal Guard Uniform | cloth_uniform_royal_guard | Cosmetic |
Ammo & Consumables IDs List
Never run out of supplies during a Friday night rush again. We recommend spawning these in batches of 500+. (JSON Format: {"itemID": "[Item ID]", "quantity": 500})
| Consumable Name | Item ID | Use Case |
|---|---|---|
| Fresh Hops | ingredient_hops_fresh | Basic brewing material. |
| Wild Boar Meat | ingredient_meat_boar | Mid-tier cooking material. |
| Dragon Meat | ingredient_dragon_meat | High-tier cooking material. |
| Arrow (Iron) | ammo_arrow_iron | Ammo for hired Rangers. |
| Health Potion (Minor) | consumable_potion_hp_minor | Heals injured staff/bouncers. |
| Stamina Brew | consumable_potion_stamina | Restores staff energy instantly. |
Skills, Perks & Traits IDs
You don’t just have to spawn physical items. You can use UnityExplorer to instantly learn skills or add permanent character traits to your tavern staff. (UnityExplorer Format: StaffManager.Instance.AddPerk("[Perk ID]");)
| Perk Name | Perk ID | Effect |
|---|---|---|
| Charismatic Smile | perk_charismatic_smile | Increases tip frequency by 25%. |
| Iron Lungs | perk_iron_lungs | Staff movement speed increased by 15%. |
| Master Chef | perk_master_chef | Zero chance of burning meals. |
| Intimidating Aura | perk_aura_intimidate | Reduces bar brawls by 50%. |
| Haggler | perk_trade_haggler | Reduces merchant ingredient costs by 20%. |
Troubleshooting: Why Are My Commands Failing?
If you are typing the IDs correctly but your game is crashing or the items aren’t appearing, check these common issues:
Frequently Asked Questions (FAQ)
A: Yes, absolutely. Because Tabletop Tavern is parsing these IDs from a JSON file or C# script, currency_gold will work, but CURRENCY_GOLD will crash your save file. Spacing and capitalization are strictly enforced.
A: No. Tabletop Tavern is primarily a single-player experience, and any local co-op mods execute these scripts client-side. Attempting to force spawn items in an unverified multiplayer session will likely result in desyncs or a corrupted shared world state.
A: Finding dynamic load-order IDs manually in Unity games is extremely difficult. We highly recommend using the XMODhub Item Browser, which automatically scans your active BepInEx mods, detects the custom items, and lets you spawn them with a single click without knowing the exact string ID.
Conclusion: The Ultimate Sandbox Experience
Having access to the complete Tabletop Tavern Item IDs list is the fastest way to experiment with different tavern layouts, test high-level menu recipes, or simply recover from a frustrating inventory bug. Bookmark this page so you can quickly reference the codes whenever you need a resupply for your pub.
However, if you want a significantly smoother, crash-free experience where you don’t need to manually edit text files or memorize strings of code like ingredient_dragon_meat, the XMODhub Visual Spawner is the superior modern choice. Browse items visually. Spawn them instantly. Keep your achievements active.
Get XMODhub Visual Spawner Now
XMODhub is your ultimate all-in-one toolkit for PC single-player gaming. Whether you need powerful Trainers, real-time Translation Tools, or Interactive Maps, our engine supports over 5,000+ games—including Tabletop Tavern and similar simulation hits like Tavern Master, Crossroads Inn, and Travellers Rest.

I am a passionate gamer and writer at XMODhub, dedicated to bringing you the latest gaming news, tips, and insights.
Connect with me:
LinkedIn Profile ↗





