Skip to main content

Overview

The Creatures Wiki provides detailed information about all creatures, enemies, and wildlife in Last Oasis. This includes Rupu enemies, wildlife creatures, and special bosses, along with their stats, behaviors, and loot tables.

Creature Categories

Creatures in Last Oasis are organized into several categories:

Rupu

Humanoid enemies found in camps, villages, and fortifications

Wildlife

Animals and creatures found in the wild (Nurr, Okkam, Papak, etc.)

Bosses

Special powerful creatures like The Long One (Sandworm)

Structures

Interactive environmental elements and loot containers

Creature Information

Each creature page provides detailed statistics:

Basic Stats

  • Category: Classification type (Rupu, Nurr, Papak, etc.)
  • Health: Total hit points
  • Experience: XP awarded on defeat
  • Tier: Difficulty level (T1-T4)

Drop Information

Creatures can drop various items when defeated:
drops: [
  {
    name: "Bone Splinter",
    chance: 75,
    quantity: { min: 2, max: 5 }
  },
  {
    name: "Hide",
    chance: 90,
    quantity: { min: 1, max: 3 }
  }
]
Drop chances and quantities vary by creature tier and difficulty. Higher tier creatures typically drop more valuable loot.

Common Creatures

Rupu Enemies

Rupu are the primary humanoid enemies in Last Oasis:
  • Lower health pools
  • Basic melee attacks
  • Found in small camps
  • Good for new players
  • Moderate health and damage
  • Can use ranged weapons
  • Found in outposts and villages
  • Balanced difficulty
  • High health and damage output
  • Advanced combat tactics
  • Found in fortresses and strongholds
  • Challenging encounters
  • Rupu Berserker: High damage melee fighter
  • Rupu Gunner: Long-range attacker
  • Rupu Shaman: Support unit with special abilities
  • Rupu Prophet: Rare high-value target

Wildlife Creatures

Mountable creature used for transportation
  • Can be tamed and ridden
  • Found near water sources
  • Drops hide and bone materials
  • Variants: Standard Nurr, Large Nurr, Lazaward

Boss Encounters

Boss creatures require preparation and often multiple players to defeat. Ensure you have appropriate gear and supplies.
The Long One (Sandworm)
  • Massive health pool
  • Area-of-effect attacks
  • Requires coordinated group tactics
  • Drops legendary-tier loot
  • Event-specific spawn
Fire Elemental
  • Volcanic biome boss
  • Fire-based damage
  • Environmental hazards
  • Special resistance requirements

How to Use the Creatures Wiki

Searching for Creatures

1

Access the Wiki

Navigate to /wiki and select the Creatures tab
2

Filter by Category

Use the category dropdown to filter by creature type (Rupu, Nurr, etc.)
3

Search by Name

Enter creature names in the search box (supports multiple terms)
4

View Details

Click on any creature to see full stats and drop information

URL Structure

Creatures use URL-encoded names:
/creature/[encoded-name]

Examples:
/creature/rupu-berserker
/creature/war-okkam
/creature/the-long-one

Implementation Details

Data Loading

Creature data is fetched from the JSON database:
const creatures = await getCreatures();
const foundCreature = creatures.find(
  (cr) => cr.name.toLowerCase() === creatureName?.toLowerCase(),
);
See src/pages/CreatureWiki.tsx:32-36

Extended Information

Detailed creature stats are loaded separately:
const creatureInfo = await getCreatureInfo(
  foundCreature?.name ?? creatureName ?? "",
);
setCreatureInfo({
  ...creatureInfo,
  ...foundCreature,
});
See src/pages/CreatureWiki.tsx:40-46

Category Filtering

The wiki supports filtering creatures by category:
if (category && category !== "All") {
  filtered = filtered.filter(
    (creature) => creature.category === category,
  );
}
See src/pages/Wiki.tsx:166-170

Loot Containers and Structures

Many “creatures” in the database are actually loot sources:

Container Types

  • Treasure Chests (T1-T4): Tiered loot boxes with random items
  • Ammo Boxes (T1-T4): Ammunition and projectile storage
  • Loot Boxes: Specialized containers for armor, weapons, modules, etc.
  • Hotspot Loot: Resource gathering points

Environmental Structures

  • Water Condensers: Provide water in desert areas
  • Rupu Structures: Buildings and installations in Rupu camps
  • Ancient City Relics: Event-specific loot sources
  • Falling Objects: Environmental hazards that can drop resources
Many structures marked as “creatures” can be harvested for resources or contain loot. Check the drops section for details.

Data Structure Example

Creatures are stored with the following information:
{
  "name": "Rupu Berserker",
  "category": "Rupu",
  "health": 850,
  "experiencie": 120,
  "tier": "T3",
  "drops": [
    {
      "name": "Bone Splinter",
      "chance": 80
    },
    {
      "name": "Rupu Vine",
      "chance": 65
    }
  ]
}

Community Features

Comments and Discussion

Each creature page includes a comments section for:
  • Combat strategies and tips
  • Location information
  • Drop rate reports
  • Behavior observations
See src/pages/CreatureWiki.tsx:150

Extra Information

Community-contributed notes and guides:
  • Taming guides for wildlife
  • Optimal farming locations
  • Combat tactics for difficult enemies
  • Resource efficiency tips
See src/pages/CreatureWiki.tsx:144

Tips for Creature Encounters

Always check the tier level before engaging. T4 creatures can be significantly more dangerous than T1 variants.
Different creatures have different attack patterns. Observe their behavior before committing to combat.
Some wildlife creatures can be tamed or mounted. Check the creature details to see if taming is possible.

Build docs developers (and LLMs) love