SAMMI Stuff

Find all the information you need to set up Deck Hopper and my extensions for your SAMMI.

Random Bunny

SAMMI Extensions

Palworld Paldex

Get on Ko-fi
Slide 1
Slide 2

Palworld Paldex is an extension for SAMMI that allows you to search for Pals in Palworld Paldex and display their stats.


Features

  • Search for Pals by Name, Paldex Number, Type, Suitability, or Drop.
  • Get detailed stats for each Pal, including name, description, types, and more.
  • Easy integration with your SAMMI.
  • Premade deck with all available commands, including example Twitch Chat triggers.

API Usage

Paldeck Palworld utilizes code from an API under the MIT license, available at this repository, deployed on our server. Access is reserved exclusively for this SAMMI extension, and unauthorized external use is prohibited.


Setup

Quick Start

  1. Install the extension. You can follow the Extension Install Guide.
  2. Open Bridge. It must be running for the extension to work.
  3. Review the premade deck "Palworld Paldex" for available extension commands.

Command Usage Reminder

These commands require a waiting period before 'Save Variable As' is populated. Use the Wait Until Variable Exists command, and remember to delete the variable you're waiting for beforehand.

Get Pal By Name

Allows you to search for a Pal by name and retrieve its stats. Use the Palworld Paldex Get Pal command with the following parameters:

ParameterDescriptionExample
Get Pal ByHow you want to search for the PalName
Max AmountN/A when searching by NameN/A
InputName of the Pal (case insensitive)Relaxaurus
Save Variable AsVariable to save the result, returns empty string if no resultsresult

Get Pal By Paldex Number

Search for a Pal by its Paldex Number and retrieve its stats. Use the Palworld Paldex Get Pal command with:

ParameterDescriptionExample
Get Pal ByHow you want to search for the PalPaldex Number
Max AmountN/A when searching by Paldex NumberN/A
InputPaldex Number (leading zeroes required)050
Save Variable AsVariable to save the result, returns empty string if no resultsresult

Get Pal By Type

Search for a Pal by its Type and get its stats. Use the Palworld Paldex Get Pal command with:

ParameterDescriptionExample
Get Pal ByHow you want to search for the PalType
Max AmountMax Pals returned for this Type5
InputType you're searching forwater
Save Variable AsVariable to save the result, returns empty string if no results tresult

Get Pal By Suitability

Search for a Pal by its Suitability (e.g., watering or transporting). Use the Palworld Paldex Get Pal command with:

ParameterDescriptionExample
Get Pal ByHow you want to search for the PalSuitability
Max AmountMax Pals returned for this suitability5
InputSuitability (case insensitive)watering
Save Variable AsVariable to save the result, returns empty string if no resultsresult

Get Pal By Drop

Search for a Pal by its Drop when captured or killed, and get its stats. Use the Palworld Paldex Get Pal command with:

ParameterDescriptionExample
Get Pal ByHow you want to search for the PalDrop
Max AmountMax Pals returned for this drop5
InputDrop you're searching forleather
Save Variable AsVariable to save the result, returns empty string if no resultsresult

General Information

Each search will return an object (for Name or Paldex Number searches) or an array of objects (for other types). Detailed Pal information includes:

name: Pal's name
key: Paldex Number
description: Pal description
aura: - description: Abilities of the aura.
      - name: Name of the aura.
types: Array of all Pal types
drops: Array of droppable items.
image: URL of the Pal's wiki image
suitabilities: Array of suitable activities.
suitability: Object of all suitabilities and their levels

Example for Relaxaurus entry:

{
  "name": "relaxaurus",
  "key": "085",
  "description": "Contrary to its blasé appearance, it's quite ferocious.",
  "aura": {
    "description": "Can be ridden.",
    "name": "Hungry Missile"
  },
  "types": ["dragon", "water"],
  "drops": ["high quality pal oil", "ruby"],
  "image": "https://static.wikia.nocookie.net/palworld/images/0/01/Relaxaurus_menu.png/",
  "suitabilities": ["watering", "transporting"],
  "suitability": [
    { "type": "watering", "level": 2 },
    { "type": "transporting", "level": 1 }
  ]
}

Get Help

Please see Troubleshooting for common extensions issues.

Previous
Native Screenshot