Overview
The Items Wiki is a comprehensive database containing detailed information about every item in Last Oasis. It includes crafting recipes, material requirements, item statistics, rarity variations, and drop locations.Features
Search and Discovery
The wiki provides powerful search and filtering capabilities:Multi-term Search
Search items by name with support for multiple search terms
Category Filtering
Filter items by category (weapons, armor, tools, etc.)
Content Type Switching
Switch between items, creatures, and perks databases
Pagination
Browse through items with automatic load-more functionality
Item Details
Each item page displays comprehensive information:Basic Information
- Cost to Learn: Tablet cost for unlocking the recipe
- Category: Item classification (weapon, armor, tool, etc.)
- Parent Technology: Required tech tree prerequisite
- Trade Price: NPC trading value in flots
- Stack Size: Maximum stack size in inventory
- Weight: Base item weight
Crafting Information
- Recipe Ingredients: Required materials and quantities
- Crafting Station: Where the item can be crafted
- Crafting Time: Time required to craft one unit
- Multiple Recipes: Some items have alternative crafting methods
Item Statistics
Depending on item type, you’ll find:Weapon Stats
Weapon Stats
- Base damage
- Attack speed
- Durability
- Special effects
Armor Stats
Armor Stats
- Damage reduction
- Durability
- Movement speed modifiers
- Environmental protection
Tool Stats
Tool Stats
- Harvesting efficiency
- Durability
- Resource type bonuses
Walker/Module Stats
Walker/Module Stats
- Health points
- Speed
- Cargo capacity
- Module slots
Structure Stats
Structure Stats
- Health points
- Build requirements
- Functionality details
Rarity System
Items can have different rarity tiers that affect their statistics:- Common
- Uncommon
- Rare
- Epic
- Legendary
Base item statistics with standard values
Rarity affects stats like weight, durability, damage, and experience rewards. Use the rarity selector on each item page to see stat variations.
How to Use
Browsing the Wiki
- Navigate to
/wikito access the main wiki page - Use the content type selector to choose between Items, Creatures, or Perks
- Enter search terms or select a category from the dropdown
- Click on any item to view detailed information
Searching for Items
The search supports multiple terms for refined results:Comparing Rarities
On any item page:Implementation Details
Data Source
Item data is loaded from the minified JSON file hosted on GitHub:src/pages/ItemWiki.tsx:71-76 and src/pages/Wiki.tsx:107
Item Information Structure
Each item combines data from two sources:- Base Item Data (
items_min.json): Name, category, crafting recipes - Extended Info (individual JSON files): Detailed stats, descriptions, drops
src/pages/ItemWiki.tsx:80-84
Rarity Calculations
Rarity modifiers are calculated using thecalcRarityValue() function:
src/pages/ItemWiki.tsx:349-354
Search Implementation
The search filters items by matching all search terms:src/pages/Wiki.tsx:151-156
Additional Features
Schematic Information
For items that are schematics (learnable recipes):- Drop Locations: Where the schematic can be found
- Quest Rewards: Which quests reward this schematic
- Unlocked Items: What recipes become available
SchematicDropInfo component usage at src/pages/ItemWiki.tsx:492
Usage Information
- Can Be Used In: Shows which recipes use this item as an ingredient
- Dropped By: Lists creatures or loot sources
- Drops: For containers, shows what items can be obtained
src/pages/ItemWiki.tsx:499-509
Community Features
- Comments Section: Community discussion for each item
- Report Issues: Flag incorrect information for review
- Extra Information: Additional tips and notes from the community
src/pages/ItemWiki.tsx:512-515
URL Structure
Items use URL-encoded names for routing:Related Features
- Creatures Wiki - Information about Last Oasis creatures
- Tech Tree - Technology progression system
- Crafting Calculator - Calculate crafting costs
- JSON Files - Raw data files for developers