├── .github ├── ISSUE_TEMPLATE │ ├── BUG-REPORT.yml │ ├── FEATURE-REQUEST.yml │ └── config.yml └── images │ ├── AdminWhitelist.png │ ├── Bugs.png │ ├── LOGO.jpg │ ├── LOGO_WIKI.jpg │ └── LOGO_WIKI_CLEAN.png ├── LICENSE ├── README.md ├── README_ZH_CN.md └── Wiki ├── Commands ├── README.md ├── README_ZH_CN.md ├── deletepals.md ├── deletepals_ZH_CN.md ├── givepal_j.md └── givepal_j_ZH_CN.md ├── Data Lists ├── EPalWazaIDs.md ├── EPalWazaIDs_ZH_CN.md ├── Items.md ├── Pals.md ├── PassiveSkills.md ├── PassiveSkills_ZH_CN.md ├── README.md └── README_ZH_CN.md ├── Files ├── Config.md ├── Config_ZH_CN.md ├── PalJSON Presets │ ├── OPnubis.json │ └── PalGuardian.json ├── PalJSON.md ├── PalJSON_ZH_CN.md ├── README.md └── README_ZH_CN.md ├── README.md └── README_ZH_CN.md /.github/ISSUE_TEMPLATE/BUG-REPORT.yml: -------------------------------------------------------------------------------- 1 | name: "Bug Report" 2 | description: Create a new issue for a bug. 3 | title: "Your title" 4 | labels: [ 5 | "bug" 6 | ] 7 | body: 8 | - type: dropdown 9 | id: version 10 | attributes: 11 | label: "PalDefender Version" 12 | description: What version of PalDefender are you running? 13 | multiple: true 14 | options: 15 | - v1.1273 16 | - Older than v1.1273 17 | - Beta 18 | validations: 19 | required: true 20 | - type: textarea 21 | id: description 22 | attributes: 23 | label: "What happened?" 24 | description: Also tell us, what did you expect to happen? 25 | placeholder: Short and explicit description of your incident... 26 | validations: 27 | required: true 28 | - type: textarea 29 | id: reprod 30 | attributes: 31 | label: "Reproduction steps" 32 | description: Please enter an explicit description of your bug 33 | value: | 34 | 1. ... 35 | 2. ... 36 | 3. See bug "..." 37 | render: bash 38 | validations: 39 | required: true 40 | - type: textarea 41 | id: screenshot 42 | attributes: 43 | label: "Screenshots" 44 | description: If applicable, add screenshots to help explain your problem. 45 | placeholder: just drag & drop your screenshot or copy & paste it. 46 | validations: 47 | required: false 48 | - type: textarea 49 | id: logs 50 | attributes: 51 | label: "Logs" 52 | description: Please copy and paste any relevant log output. This will be automatically formatted, so no need for backticks. 53 | render: bash 54 | validations: 55 | required: false 56 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml: -------------------------------------------------------------------------------- 1 | name: "Feature Request" 2 | description: Create a new issue for a feature request. 3 | title: "Your title" 4 | labels: [ 5 | "feature request" 6 | ] 7 | body: 8 | - type: textarea 9 | id: description 10 | attributes: 11 | label: "Describe your idea" 12 | description: Try to be precise as much as possible. 13 | placeholder: ... 14 | validations: 15 | required: true 16 | - type: textarea 17 | id: purpose 18 | attributes: 19 | label: "Purposes" 20 | description: Please explain why this feature should be implemented into PalDefender. 21 | validations: 22 | required: true 23 | - type: textarea 24 | id: expected_behavior 25 | attributes: 26 | label: "Expected Behavior" 27 | description: Describe what you expect to happen when this feature is implemented. 28 | validations: 29 | required: true 30 | - type: textarea 31 | id: attachments 32 | attributes: 33 | label: "Attachments" 34 | description: If required, add images or other resources here. 35 | validations: 36 | required: false 37 | - type: dropdown 38 | id: priority 39 | attributes: 40 | label: "Priority" 41 | description: How urgent is this feature request? 42 | options: 43 | - Low 44 | - Medium 45 | - High 46 | - Critical 47 | validations: 48 | required: true 49 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/images/AdminWhitelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimeit/PalDefender/0aab7a788eb4ad5668c7ecee2f6e82602ba003ae/.github/images/AdminWhitelist.png -------------------------------------------------------------------------------- /.github/images/Bugs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimeit/PalDefender/0aab7a788eb4ad5668c7ecee2f6e82602ba003ae/.github/images/Bugs.png -------------------------------------------------------------------------------- /.github/images/LOGO.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimeit/PalDefender/0aab7a788eb4ad5668c7ecee2f6e82602ba003ae/.github/images/LOGO.jpg -------------------------------------------------------------------------------- /.github/images/LOGO_WIKI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimeit/PalDefender/0aab7a788eb4ad5668c7ecee2f6e82602ba003ae/.github/images/LOGO_WIKI.jpg -------------------------------------------------------------------------------- /.github/images/LOGO_WIKI_CLEAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultimeit/PalDefender/0aab7a788eb4ad5668c7ecee2f6e82602ba003ae/.github/images/LOGO_WIKI_CLEAN.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Ultimeit 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![PalDefender Logo](/.github/images/LOGO.jpg) 2 | *LOGO made by [Jia]()* ! 3 | 4 | # PalDefender (PalWorld Server AntiCheat) 5 | **Version:** 1.1291 6 | 7 | #### English / [简体中文](/README_ZH_CN.md) 8 | 9 | ## **Get the best servers for modding at [Qonzer](https://qonzer.com/aff.php?aff=61) *(Affiliate Link)*.** 10 | *They support PalDefender right out of the box—no special setup or technical knowledge needed. It just works.* 11 | 12 | **A 10% Discount code for qonzer servers can be found on our Discord! Check out the server-host channel.** 13 | 14 | [![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/T6T014OZZB) 15 | 16 | [![Discord Server](https://img.shields.io/badge/-Join%20our%20Discord-111111?style=for-the-badge&logo=discord)](https://discord.com/invite/bdTxPbwSEW) 17 | [![Static Badge](https://img.shields.io/badge/-Nexus%20Mods-111111?style=for-the-badge&logo=nexusmods)](https://www.nexusmods.com/palworld/mods/451) 18 | 19 |
20 | 21 | ## Table of Contents 22 | * [About](#about-) 23 | * [Requirements](#requirements-) 24 | * [Installation](#installation-) 25 | - [Windows](#windows) 26 | - [Linux (Wine/Proton)](#linux-wineproton) 27 | * [Features](#features-) 28 | * [Wiki](Wiki/README.md) 29 | * [Authors](#authors-) 30 | * [Credits](#credits-) 31 | * [Afterwords](#afterwords-) 32 | 33 | ## About [↑](#paldefender-palworld-server-anticheat) 34 | 35 | Implements comprehensive server-side validation to prevent a wide range of known and some yet undiscovered cheats, exploits, and crashes. Before executing any player action, PalDefender checks for potential cheating behavior. Depending on the server's configuration, players attempting such actions are warned, kicked, banned, or IP banned. Currently, this feature is in beta and is available exclusively for Windows-based dedicated servers. **Any experienced Linux dev is welcome to help us out.** 36 | 37 | The code is closed source and we dont have any plans to release it. 38 | 39 |
40 | 41 | ## Requirements [↑](#paldefender-palworld-server-anticheat) 42 | - [Microsoft Visual C++ Latest Redistributable](https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170) 43 | I'm not exactly sure how this works for Proton or Wine but related of the feedback it seemed to work out of the box. 44 | 45 |
46 | 47 | ## Installation [↑](#paldefender-palworld-server-anticheat) 48 | 49 | ### Windows 50 | 1. Download the latest release at [NexusMods.com](https://www.nexusmods.com/palworld/mods/451) 51 | 2. Extract the contents and place it into your PalServer sub-directory `Pal\Binaries\Win64` 52 | It should look like this: 53 | ``` 54 | Palworld_Server/ 55 | ├── Engine/ 56 | ├── Pal/ 57 | │ ├── Binaries/ 58 | │ │ └── Win64 59 | │ │ ├── config/ 60 | │ │ ├── PalDefender/ # Will be generated 61 | │ │ ├── <...> 62 | │ │ ├── PalDefender.dll # << Put here 63 | │ │ ├── version.dll # << Put here (Windows only) 64 | │ │ ├── PalServer-Win64-Shipping-Cmd.exe 65 | │ │ └── PalServer-Win64-Shipping.exe 66 | │ ├── Content/ 67 | │ ├── Plugins/ 68 | │ └── Saved/ 69 | ├── PalServer.exe 70 | ├── steamclient.dll 71 | └── <...> 72 | ``` 73 | 3. Start your server once to generate the config file `Config.json`, which will be generated at `./PalDefender/Config.json`. 74 | 75 | ### Linux (Wine/Proton) 76 | 1. Install a Palworld Proton/Wine server (This won't be covered here). 77 | 2. Install [UE4SS](https://github.com/UE4SS-RE/RE-UE4SS) on your server. 78 | 3. Follow the Windows instructions. 79 | 80 | ## Features [↑](#paldefender-palworld-server-anticheat) 81 | 82 | * Cheat & Exploit detection, prevention and punishment 83 | * More Admin commands (including RCON) 84 | * IP banning System 85 | * IP whitelist for Admin commands (so cheaters can't use them) 86 | * Chat logging 87 | * Unreal Engine Network logging 88 | * Configurable cheating punishments 89 | * PvP damage limiting (although we would suggest not enabling PvP at all) 90 | * A few game mechanic tweaks such as Pal Enhancement limitations or disable Butchering 91 | 92 |
93 | 94 | ## Wiki [↑](#paldefender-palworld-server-anticheat) 95 | 96 | All around PalDefender and its usage can be found in the [Wiki](Wiki/README.md). 97 | 98 |
99 | 100 | ## Authors [↑](#paldefender-palworld-server-anticheat) 101 | 102 | - [Ultimeit](https://github.com/Ultimeit) 103 | - [Zvendson](https://github.com/Zvendson) 104 | 105 |
106 | 107 | ## Credits [↑](#paldefender-palworld-server-anticheat) 108 | 109 | * [Pocketpair, Inc.](https://www.pocketpair.jp/palworld) 110 | * [Unreal Engine](https://www.unrealengine.com) - Epic Games 111 | 112 |
113 | 114 | ## Afterwords [↑](#paldefender-palworld-server-anticheat) 115 | 116 | **私たちは、[Pocketpair, Inc.](https://www.pocketpair.jp/palworld)による素晴らしい仕事に感謝の意を表したいと思います。色鮮やかな世界や、パルとのダイナミックなインタラクション、そして創造的なデザインは、チームの献身と情熱を見事に表しています。コミュニティの一員として、私たちはPalServer向けのプラグインを開発し、セキュリティを強化し、潜在的な悪用から守ることでPalworldをサポートしています** 117 | 118 | **私たちは今後も、Palworldサーバーに最高水準のセキュリティと保護を提供できるよう努め続けます。皆様からのフィードバックは非常に貴重で、心から感謝しています。**
119 | ~ [Zvend](https://github.com/Zvendson) 120 | 121 | > *We want to express our gratitude to [Pocketpair, Inc.](https://www.pocketpair.jp/palworld) for their incredible work on Palworld. The vibrant world, dynamic interactions with Pals, and creative design showcase the team's dedication and passion. As a community, we are also working to support Palworld by developing a plugin for the PalServer that enhances security and protects it from potential exploits.* 122 |

123 | *We will continue striving to provide the highest level of security and protection for your Palworld server. Your feedback is invaluable, and we truly appreciate it.* 124 | -------------------------------------------------------------------------------- /README_ZH_CN.md: -------------------------------------------------------------------------------- 1 | ![PalDefender Logo](/.github/images/LOGO.jpg) 2 | *LOGO made by [Jia]()* ! 3 | 4 | # PalDefender (幻兽帕鲁服务器反作弊) 5 | **Version:** 1.1291 6 | 7 | ### [English](/README.md) / 简体中文 8 | 9 | ## **Get the best servers for modding at [Qonzer](https://qonzer.com/aff.php?aff=61) *(Affiliate Link)*.** 10 | *They support PalDefender right out of the box—no special setup or technical knowledge needed. It just works.* 11 | 12 | **A 10% Discount code for qonzer servers can be found on our Discord! Check out the server-host channel.** 13 | 14 | [![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/T6T014OZZB) 15 | 16 | [![Discord Server](https://img.shields.io/badge/-Join%20our%20Discord-111111?style=for-the-badge&logo=discord)](https://discord.com/invite/bdTxPbwSEW) 17 | [![Static Badge](https://img.shields.io/badge/-Nexus%20Mods-111111?style=for-the-badge&logo=nexusmods)](https://www.nexusmods.com/palworld/mods/451) 18 | 19 |
20 | 21 | ## 目录 22 | * [关于](#关于-) 23 | * [需求](#需求-) 24 | * [安装](#安装-) 25 | - [Windows](#windows) 26 | - [Linux (Wine/Proton)](#linux-wineproton) 27 | * [功能](#功能-) 28 | * [Wiki](Wiki/README_ZH_CN.md) 29 | * [作者](#作者-) 30 | * [致谢](#致谢-) 31 | * [后记](#后记-) 32 | 33 | ## 关于 [↑](#paldefender-幻兽帕鲁服务器反作弊) 34 | 35 | 实现了全面的服务端验证,防止已知和一些尚未发现的作弊、漏洞和崩溃。PalDefender 在执行任何玩家操作之前会检查潜在的作弊行为。根据服务器的配置,尝试这些操作的玩家会被警告、踢出、封禁或 IP 封禁。目前,这一功能处于测试阶段,仅在基于 Windows 的服务器上可用。**任何有经验的 Linux 开发者都欢迎来帮助我们。** 36 | 37 | 代码是闭源的,我们没有计划发布它。 38 | 39 |
40 | 41 | ## 需求 [↑](#paldefender-幻兽帕鲁服务器反作弊) 42 | 43 | - [Microsoft Visual C++ 最新版本的可再发行组件](https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170) 44 | 我不确定在 Proton 或 Wine 上如何使用,但根据反馈,它似乎可以开箱即用。 45 | 46 |
47 | 48 | ## 安装 [↑](#paldefender-幻兽帕鲁服务器反作弊) 49 | 50 | ### Windows 51 | 52 | 1. 在 [NexusMods.com](https://www.nexusmods.com/palworld/mods/451) 下载最新版本 53 | 2. 解压内容并将其放入你的 PalServer 子目录 `Pal\Binaries\Win64` 54 | 目录结构应如下所示: 55 | ``` 56 | Palworld_Server/ 57 | ├── Engine/ 58 | ├── Pal/ 59 | │ ├── Binaries/ 60 | │ │ └── Win64 61 | │ │ ├── config/ 62 | │ │ ├── PalDefender/ # 将生成此文件夹 63 | │ │ ├── <...> 64 | │ │ ├── PalDefender.dll # << 放在此处 65 | │ │ ├── version.dll # << 放在此处 (Windows only) 66 | │ │ ├── PalServer-Win64-Shipping-Cmd.exe 67 | │ │ └── PalServer-Win64-Shipping.exe 68 | │ ├── Content/ 69 | │ ├── Plugins/ 70 | │ └── Saved/ 71 | ├── PalServer.exe 72 | ├── steamclient.dll 73 | └── <...> 74 | ``` 75 | 3. 请先启动您的服务器一次,以生成配置文件 `Config.json`,该文件将生成在 `./PalDefender/Config.json`。 76 | 77 | ### Linux (Wine/Proton) 78 | 79 | 1. 安装 Palworld Proton/Wine 服务器(此部分不在本文涵盖范围内)。 80 | 2. 在服务器上安装 [UE4SS](https://github.com/UE4SS-RE/RE-UE4SS)。 81 | 3. 按照 Windows 安装步骤操作。 82 | 83 | ## 功能 [↑](#paldefender-幻兽帕鲁服务器反作弊) 84 | 85 | * 作弊和漏洞检测、预防与惩罚 86 | * 更多的管理员命令(包括 RCON) 87 | * IP 封禁系统 88 | * 管理员命令的 IP 白名单(防止作弊者使用管理员命令) 89 | * 聊天记录 90 | * RCON REST网络日志 91 | * 可配置的作弊惩罚 92 | * PvP 伤害限制(尽管我们建议完全禁用 PvP) 93 | * 一些游戏机制调整,如限制帕鲁强化或禁用肢解 94 | 95 |
96 | 97 | ## Wiki [↑](#paldefender-幻兽帕鲁服务器反作弊) 98 | 99 | 关于 PalDefender 和它的使用,详细信息可以查看 [Wiki](Wiki/README_ZH_CN.md)。 100 | 101 |
102 | 103 | ## 作者 [↑](#paldefender-幻兽帕鲁服务器反作弊) 104 | 105 | - [Ultimeit](https://github.com/Ultimeit) 106 | - [Zvendson](https://github.com/Zvendson) 107 | 108 |
109 | 110 | ## 致谢 [↑](#paldefender-幻兽帕鲁服务器反作弊) 111 | 112 | * [Pocketpair, Inc.](https://www.pocketpair.jp/palworld) 113 | * [Unreal Engine](https://www.unrealengine.com) - Epic Games 114 | 115 |
116 | 117 | ## 后记 [↑](#paldefender-幻兽帕鲁服务器反作弊) 118 | 119 | **私たちは、[Pocketpair, Inc.](https://www.pocketpair.jp/palworld)による素晴らしい仕事に感謝の意を表したいと思います。色鮮やかな世界や、パルとのダイナミックなインタラクション、そして創造的なデザインは、チームの献身と情熱を見事に表しています。コミュニティの一員として、私たちはPalServer向けのプラグインを開発し、セキュリティを強化し、潜在的な悪用から守ることでPalworldをサポートしています** 120 | 121 | **私たちは今後も、Palworldサーバーに最高水準のセキュリティと保護を提供できるよう努め続けます。皆様からのフィードバックは非常に貴重で、心から感謝しています。**
122 | ~ [Zvend](https://github.com/Zvendson) 123 | 124 | > *我们想向 [Pocketpair, Inc.](https://www.pocketpair.jp/palworld) 表达我们的感谢,感谢他们为幻兽帕鲁所做的非凡工作。色彩斑斓的世界、与帕鲁的动态互动以及创意设计都展示了团队的奉献精神和热情。作为社区的一员,我们也在为幻兽帕鲁开发服务端插件,增强安全性,并保护其免受潜在的漏洞攻击。* 125 |

126 | *我们将继续努力,为您的幻兽帕鲁服务器提供最高水平的安全性和保护。您的反馈至关重要,我们由衷地感谢。* 127 | -------------------------------------------------------------------------------- /Wiki/Commands/README.md: -------------------------------------------------------------------------------- 1 | ### [<<<](../README.md) Wiki 2 | 3 | #### English / [简体中文](./README_ZH_CN.md) 4 | 5 | # Commands 6 | 7 | ### Table of Contents 8 | - [Command Table](#command-table) 9 | - [Command Argument Details](#command-argument-details) 10 | 11 | Commands arguments that are wrapped by `<>` are required to perform it, arguments wrapped by `[]` are optional and have a default value shown as `[argname=DefaultValue]`. 12 | 13 | ## Command Table 14 | | Command | Usage | Description | Admin Only | Chat | RCON | 15 | |---------|-------|-------------|------------|------|------| 16 | | `/reloadcfg` | `/reloadcfg` | Reloads the PalDefender config file. | X | X | X | 17 | | `/kick ` | `/kick Cheater007` | Kicks a player by name from the server. | X | X | X | 18 | | `/kickid ` | `/kickid 76567890987654321` | Kicks a player by UserID from the server. | X | X | X | 19 | | `/ban ` | `/ban Cheater007` | Bans a player by name from the server. | X | X | X | 20 | | `/banid ` | `/banid 76567890987654321` | Bans a player by UserID from the server. | X | X | X | 21 | | `/ipban ` | `/ipban Cheater007` | IP Bans a player by name from the server. | X | X | X | 22 | | `/ipbanid ` | `/ipbanid 76567890987654321` | IP Bans a player by UserID from the server. | X | X | X | 23 | | `/ipban_ip ` | `/ipban_ip 127.0.0.1` | Ban IP address from joining the server. | X | X | X | 24 | | `/unban_ip ` | `/unban_ip 127.0.0.1` | Reverts an IP address Ban. | X | X | X | 25 | | `/addadminip ` | `/addadminip 127.0.0.1` | Adds IP address to admin whitelist. | X | X | X | 26 | | `/setadmin ` | `/setadmin 76567890987654321` | Temporarily grants/revokes admin from a player. | X | X | X | 27 | | `/renameplayer ` | `/renameplayer 76567890987654321 Palworld God` | Renames a Player that is currently online. | X | X | X | 28 | | `/getip ` | `/getip 76567890987654321` | Gives you a player's IP address. (Must be online) | X | X | X | 29 | | `/give [Amount=1]` | `/give 76567890987654321 LuxuryMedicines 42` | Gives a player an item and if specified how many. | X | X | X | 30 | | `/giveitems [:] ...` | `/giveitems 76567890987654321 LuxuryMedicines:42 Money:666 AssaultRifle_Default5` | Gives a player more than 1 item in one command and if specified how many of each seperated by a colon. | X | X | X | 31 | | `/giveme [Amount=1]` | `/giveme Lotus_hp_02 999` |Gives you an item and if specified how many. | X | X | | 32 | | `/delitem [Amount=1]` | `/delitem 76567890987654321 LuxuryMedicines all` | Deletes an item from a player and if specified how many. Default is `1` which will delete only 1 occurence of that item. Use `all` instead of `1` to delete all occurences. | X | X | X | 33 | | `/delitems [:] ...` | `/delitems 76567890987654321 LuxuryMedicines Milk:all Money:5000` | Deletes more than 1 item from a player in one command and if specified how many of each seperated by a colon. Use `all` instead of `1` to delete all occurences. | X | X | X | 34 | | `/give_exp ` | `/give_exp 76567890987654321 400000` | Gives a player the specified amount of EXP. | X | X | X | 35 | | `/giveme_exp ` | `/giveme_exp 400000` | Gives yourself the specified amount of EXP. | X | X | | 36 | | `/whitelist_add ` | `/whitelist_add 76567890987654321` | Adds a UserID to the whitelist. | X | X | X | 37 | | `/whitelist_remove ` | `/whitelist_remove 76567890987654321` | Removes a UserID from the whitelist. | X | X | X | 38 | | `/whitelist_get` | `/whitelist_get` | Gets full list of whitelisted players. | X | X | X | 39 | | `/givepal [Level=1]` | `/givepal 76567890987654321 FengyunDeeper 55` | Gives the player a Pal (if their party is full, it will go into their Pal storage). All attributes are randomized. | X | X | X | 40 | | `/givemepal [Level=1]` | `/givemepal FengyunDeeper 55` | Gives yourself a Pal (if your party is full, it will go into your Pal storage). All attributes are randomized. | X | X | | 41 | | [/givepal_j](givepal_j.md) | `/givepal_j ` | Gives the player a Pal with the provided attributes in the json. (if their party is full, it will go into their Pal storage). All attributes are randomized if not provided by the json file. See [PalJSON](../Files/PalJSON.md#json-file-template) for a deeper understanding. | X | X | X | 42 | | `/givemepal_j ` | `/givemepal_j OPnubis` | Gives yourself a Pal with the provided attributes in the json. (if your party is full, it will go into your Pal storage). All attributes are randomized if not provided by the json file. See [PalJSON](../Files/PalJSON.md#json-file-template) for a deeper understanding. | X | X | | 43 | | [/deletepals](deletepals.md) | `/deletepals ` | Deletes multiple pals from a player's palteam and palbox based on a filter, which can be configured through command arguments. | X | X | X | 44 | | `/exportpals ` | `/exportpals 76567890987654321` | Export every Pal of a player to a json file at `Pal/Binaries/Win64/PalDefender/pals/`. See [PalJSON](../Files/PalJSON.md#json-file-template) for a deeper understanding. | X | X | X | 45 | | `/jetragon` | `/jetragon` | Gives you an Admin-Jetragon Pal (it's faaas.... gone). | X | X | | 46 | | `/catwaifu` | `/catwaifu` | Gives you an Admin-Cat-Waifu that buffs your character stats. | X | X | | 47 | | `/giveegg ` | `/giveegg 76567890987654321 PalEgg_Electricity_03` | Gives the player an egg **with a completely random Pal** inside. Egg type only affects the hatch time, but not the Pal inside. | X | X | X | 48 | | `/goto ` | `/goto 133.7 666 42` | Teleports you to the provided location. | X | X | | 49 | | `/pgbroadcast ` | `/pgbroadcast Hello, Palworld!` | Send message to all player in the server that can contain spaces. | X | X | X | 50 | | `/iwantplayerlist` | `/iwantplayerlist` | Sets the `PalWorldSettings.bShowPlayerList` to `True` until the next server restart. | X | X | X | 51 | | `/getrconcmds` | `/getrconcmds` | Returns a list of every command with the required arg count which is usable by RCON. Example: `getrconcmds:1;giveegg:2;give:2;` | X | | X | 52 | | `/getnearestbase [X=Player.X] [Y=Player.Y] [Z=Player.Z]` | `/getnearestbase 133.7 666 42` | Tells you guild name which owns base nearest to your character. **If used by RCON, then all 3 arguments are required.** | X | X | X | 53 | | `/gotonearestbase [X=Player.X] [Y=Player.Y] [Z=Player.Z]` | `/gotonearestbase 133.7 666 42`
`/gotonearestbase` | Teleports you to the nearest base. | X | X | | 54 | | `/killnearestbase [X=Player.X] [Y=Player.Y] [Z=Player.Z]` | `/killnearestbase 133.7 666 42`
`/killnearestbase` | Destroys nearest base. (Use with caution). **If used by RCON, then all 3 arguments are required.** | X | X | X | 55 | | `/adminlogout` | `/adminlogout` | Logs you out of admin mode. | X | X | X | 56 | | `/toggleserverpvp` | `/toggleserverpvp` | Toggles the `PalWorldSettings.bIsPvP` and `PalWorldSettings.bEnablePlayerToPlayerDamage` between `True` and `False` until the next server restart. | X | X | X | 57 | | `/give_relic ` | `/give_relic 76567890987654321 666` | Gives the player one or more Lifmunk Effigies. | X | X | X | 58 | | `/giveme_relic ` | `/giveme_relic 666` | Gives yourself one or more Lifmunk Effigies. | X | X | | 59 | | `/givetech [Count=1]` | `/givetech 76567890987654321 666` | Gives the player one or more Technology Points. | X | X | X | 60 | | `/givemetech [Count=1]` | `/givemetech 666` | Gives yourself one or more Technology Points. | X | X | | 61 | | `/givebosstech [Count=1]` | `/givebosstech 76567890987654321 666` | Gives the player one or more Ancient Technology Points. | X | X | X | 62 | | `/givemebosstech [Count=1]` | `/givemebosstech 666` | Gives yourself one or more Ancient Technology Points. | X | X | | 63 | | `/givestats [Count=1]` | `/givestats 76567890987654321 666` | Gives the player one or more Unused Status Points (negative value will subtract). Does not affect points that are already spent. | X | X | X | 64 | | `/givemestats [Count=1]` | `/givestats 666` | Gives yourself one or more Unused Status Points (negative value will subtract). Does not affect points that are already spent. | X | X | | 65 | | `/setguildleader ` | `/setguildleader 76567890987654321` | Makes target player the guild leader of the guild he currently belongs to. | X | X | X | 66 | | `/imcheater` | `/imcheater` | Use this to test how your server response to a cheater. | X | X | X | 67 | 68 |
69 | 70 | ## Command Argument Details 71 | | Argument | | 72 | |----------|----------| 73 | | Amount
Level | A natural number (positive integer). | 74 | | X, Y, Z |Floating numbers for a position in the GameWorld. | 75 | | UserID | A platform iD such as [SteamID](https://steamid.io) or XboxID (e.g. gdk_2535458851941788) are a unique identifier used to identify an account on that Platform. | 76 | | PlayerName | A 24 letter limited name a player can choose and change during gameplay. | 77 | | [IP](https://en.wikipedia.org/wiki/IP_address) | An Internet Protocol address (IP address) is a numerical label such as 192.0.2.1 that is assigned to a device connected to a computer network that uses the Internet Protocol for communication. IP addresses serve two main functions: network interface identification, and location addressing. | 78 | | [ItemID](https://pwmodding.wiki/docs/game-data/item-table) | A unique Name to identify the item you are looking for. | 79 | | [PalID](https://pwmodding.wiki/docs/game-data/monster-table) | A unique Name to identify the Pal you are looking for. | 80 | | [EggID](https://pwmodding.wiki/docs/game-data/item-table) | An ItemID that is limited to the eggs:
`PalEgg_Dark_01`-`PalEgg_Dark_05`, `PalEgg_Dragon_01`-`PalEgg_Dragon_05`,
`PalEgg_Earth_01`-`PalEgg_Earth_05`, `PalEgg_Electricity_01`-`PalEgg_Electricity_05`,
`PalEgg_Fire_01`-`PalEgg_Fire_05`, `PalEgg_Ice_01`-`PalEgg_Ice_05`,
`PalEgg_Leaf_01`-`PalEgg_Leaf_05`, `PalEgg_Normal_01`-`PalEgg_Normal_05`,
`PalEgg_Water_01`-`PalEgg_Water_05` | 81 | | [PalJSON](../Files/PalJSON.md#json-file-template) | A json text or filename containing json that provided Pal attributes. Template and more can be found [here](../Files/PalJSON.md#template). | 82 | -------------------------------------------------------------------------------- /Wiki/Commands/README_ZH_CN.md: -------------------------------------------------------------------------------- 1 | ### [<<<](../README_ZH_CN.md) Wiki 2 | 3 | #### [English](./README.md) / 简体中文 4 | 5 | # 命令 6 | 7 | ### 目录 8 | - [命令表](#命令表) 9 | - [命令参数详情](#命令参数详情) 10 | 11 | 命令参数 `<>` 是必填项; `[]` 是选填项,且默认值会显示为 `[数值=默认值]`。 12 | 13 | ## 命令表 14 | | 命令 | 例子 | 描述 | 仅管理员 | 聊天 | RCON | 15 | |------|------|------|----------|------|------| 16 | | `/reloadcfg` | `/reloadcfg` | 重新加载 PalDefender 配置文件。 | X | X | X | 17 | | `/kick <玩家名称>` | `/kick Cheater007` | 根据玩家名称将其踢出服务器。 | X | X | X | 18 | | `/kickid ` | `/kickid 76567890987654321` | 根据玩家的 Steam ID 将其踢出服务器。 | X | X | X | 19 | | `/ban <玩家名称>` | `/ban Cheater007` | 根据玩家名称将其加入服务器黑名单。 | X | X | X | 20 | | `/banid ` | `/banid 76567890987654321` | 根据 Steam ID 将玩家加入服务器黑名单。 | X | X | X | 21 | | `/ipban <玩家名称>` | `/ipban Cheater007` | 根据玩家名称将该玩家的 IP 地址加入服务器黑名单。 | X | X | X | 22 | | `/ipbanid ` | `/ipbanid 76567890987654321` | 根据 Steam ID 将该 Steam ID 的 IP 地址加入服务器黑名单。 | X | X | X | 23 | | `/ipban_ip ` | `/ipban_ip 127.0.0.1` | 将指定 IP 地址加入服务器黑名单。 | X | X | X | 24 | | `/unban_ip ` | `/unban_ip 127.0.0.1` | 将指定 IP 地址移出服务器黑名单。 | X | X | X | 25 | | `/addadminip ` | `/addadminip 127.0.0.1` | 将指定 IP 地址添加到管理员白名单。 | X | X | X | 26 | | `/setadmin ` | `/setadmin 76567890987654321` | 临时授予/撤销玩家管理员权限。 | X | X | X | 27 | | `/renameplayer ` | `/renameplayer 76567890987654321 Palworld God` | Renames a Player that is currently online. | X | X | X | 28 | | `/getip ` | `/getip 76567890987654321` | 获取玩家的 IP 地址。(玩家必须在线) | X | X | X | 29 | | `/give <物品ID> [数量=1]` | `/give 76567890987654321 LuxuryMedicines 42` | 给玩家一个物品,并可指定数量。 | X | X | X | 30 | | `/giveitems <物品ID>[:<数量>] ...` | `/giveitems 76567890987654321 LuxuryMedicines:42 Money:666 AssaultRifle_Default5` | 一次给玩家多个物品,并可以指定每个物品的数量,使用冒号分隔。 | X | X | X | 31 | | `/giveme <物品ID> [数量=1]` | `/giveme Lotus_hp_02 999` | 给自己一个物品,并可指定数量。 | X | X | | 32 | | `/delitem <物品ID> [数量=1]` | `/delitem 76567890987654321 LuxuryMedicines all` | 从玩家身上删除物品,并可指定数量,默认删除一个物品。如果使用 `all`,将删除所有该物品。 | X | X | X | 33 | | `/delitems <物品ID>[:<数量>] ...` | `/delitems 76567890987654321 LuxuryMedicines Milk:all Money:5000` | 一次删除多个物品,并可指定每个物品的数量,通过冒号分隔。使用 `all` 替代 `1` 删除所有该物品。 | X | X | X | 34 | | `/give_exp <数量>` | `/give_exp 76567890987654321 400000` | 给玩家指定数量的经验值。 | X | X | X | 35 | | `/giveme_exp <数量>` | `/giveme_exp 400000` | 给自己指定数量的经验值。 | X | X | | 36 | | `/whitelist_add ` | `/whitelist_add 76567890987654321` | 将 Steam ID 添加到白名单中。 | X | X | X | 37 | | `/whitelist_remove ` | `/whitelist_remove 76567890987654321` | 从白名单中移除 Steam ID。 | X | X | X | 38 | | `/whitelist_get` | `/whitelist_get` | 获取所有已添加到白名单中的玩家列表。 | X | X | X | 39 | | `/givepal [Level=1]` | `/givepal 76567890987654321 FengyunDeeper 55` | 给玩家一个帕鲁(如果玩家携带的帕鲁已满,将进入帕鲁终端)。All attributes are randomized. | X | X | X | 40 | | `/givemepal [Level=1]` | `/givemepal FengyunDeeper 55` | Gives yourself a Pal (if your party is full, it will go into your Pal storage). All attributes are randomized. | X | X | | 41 | | [/givepal_j](givepal_j_ZH_CN.md) | `/givepal_j ` | 给玩家一个帕鲁,具有提供的 JSON 属性。(如果玩家携带的帕鲁已满,将进入帕鲁终端)。All attributes are randomized if not provided by the json file. 有关更多信息,请详见 [PalJSON](../Files/PalJSON_ZH_CN#json-file-template)。 | X | X | X | 42 | | `/givemepal_j ` | `/givemepal_j OPnubis` | Gives yourself a Pal with the provided attributes in the json. (if your party is full, it will go into your Pal storage). All attributes are randomized if not provided by the json file. See [PalJSON](../Files/PalJSON.md#json-file-template) for a deeper understanding. | X | X | | 43 | | [/deletepals](deletepals_ZH_CN.md) | `/deletepals ` | 根据过滤器从玩家的帕鲁队伍和帕鲁终端中删除多个帕鲁。过滤器可以通过命令参数配置。 | X | X | X | 44 | | `/exportpals ` | `/exportpals 76567890987654321` | 导出玩家的所有帕鲁到 `Pal/Binaries/Win64/PalDefender/pals/` 文件夹。有关更多信息,请详见 [PalJSON](../Files/PalJSON_ZH_CN#json-file-template)。 | X | X | X | 45 | | `/jetragon` | `/jetragon` | 给你一个管理员级别的空涡龙(它超快...)。 | X | X | | 46 | | `/catwaifu` | `/catwaifu` | 给你一个管理员级别的暗巫猫,增加你的角色属性。 | X | X | | 47 | | `/giveegg ` | `/giveegg 76567890987654321 PalEgg_Electricity_03` | 给玩家一个蛋,其中包含一个完全随机的帕鲁。蛋的类型只影响孵化时间,而不会影响其中的帕鲁。 | X | X | X | 48 | | `/goto ` | `/goto 133.7 666 42` | 传送到指定位置。 | X | X | | 49 | | `/pgbroadcast ` | `/pgbroadcast Hello, Palworld!` | 向服务器中的所有玩家发送消息,消息可以包含空格。 | X | X | X | 50 | | `/iwantplayerlist` | `/iwantplayerlist` | 打开 `服务器内可以查看其他玩家列表` ,直到下次服务器重启。 | X | X | X | 51 | | `/getrconcmds` | `/getrconcmds` | 返回一个命令列表,列出所有可通过 RCON 使用的命令及其所需参数数量。例如:`getrconcmds:1;giveegg:2;give:2;` | X | | X | 52 | | `/getnearestbase [X] [Y] [Z]` | `/getnearestbase 133.7 666 42` | 告诉你最近的基地所属的公会名称。**如果是 RCON 使用,则必须提供坐标。** | X | X | X | 53 | | `/gotonearestbase [X] [Y] [Z]` | `/gotonearestbase 133.7 666 42`
`/gotonearestbase` | 传送到最近的基地。 | X | X | | 54 | | `/killnearestbase [X] [Y] [Z]` | `/killnearestbase 133.7 666 42`
`/killnearestbase` | 销毁最近的基地。(使用时请小心)。**如果是 RCON 使用,则必须提供坐标。** | X | X | X | 55 | | `/adminlogout` | `/adminlogout` | 退出管理员模式。 | X | X | X | 56 | | `/toggleserverpvp` | `/toggleserverpvp` | 打开或者关闭 `服务器内PVP` 和 `玩家对玩家的伤害` ,直到下次服务器重启。 | X | X | X | 57 | | `/give_relic <数量>` | `/give_relic 76567890987654321 666` | 给玩家一个或多个翠叶鼠雕像。 | X | X | X | 58 | | `/giveme_relic ` | `/giveme_relic 666`|Gives yourself one or more Lifmunk Effigies. | X | X | | 59 | | `/givetech [Count=1]` | `/givetech 76567890987654321 666`|Gives the player one or more Technology Points. | X | X | X | 60 | | `/givemetech [Count=1]` | `/givemetech 666` | Gives yourself one or more Technology Points. | X | X | | 61 | | `/givebosstech [Count=1]` | `/givebosstech 76567890987654321 666`|Gives the player one or more Ancient Technology Points. | X | X | X | 62 | | `/givemebosstech [Count=1]` | `/givemebosstech 666`|Gives yourself one or more Ancient Technology Points. | X | X | | 63 | | `/givestats [Count=1]` | `/givestats 76567890987654321 666` | Gives the player one or more Unused Status Points (negative value will subtract). Does not affect points that are already spent. | X | X | X | 64 | | `/givemestats [Count=1]` | `/givestats 666` | Gives yourself one or more Unused Status Points (negative value will subtract). Does not affect points that are already spent. | X | X | | 65 | | `/setguildleader ` | `/setguildleader 76567890987654321` | 让目标玩家成为他当前公会的会长。 | X | X | X | 66 | | `/imcheater` | `/imcheater` | 将你标记为作弊者并采取措施(用于测试反作弊)。 | X | X | X | 67 | 68 |
69 | 70 | ## 命令参数详情 71 | | 参数 | 描述 | 72 | |------|------| 73 | | 数量
等级 | 自然数(正整数)。 | 74 | | X, Y, Z | 游戏世界中的坐标。 | 75 | | UserID | A platform iD such as [SteamID](https://steamid.io) or XboxID (e.g. gdk_2535458851941788) are a unique identifier used to identify an account on that Platform. | 76 | | 玩家名称 | 玩家可以在游戏过程中选择和修改的最多 24 个字符的名称。 | 77 | | [IP](https://en.wikipedia.org/wiki/IP_address) | IP 地址(Internet Protocol 地址)是分配给连接到计算机网络(使用互联网协议进行通信)设备的数字标签,例如 192.0.2.1。IP 地址主要用于两种功能:网络接口识别和位置定位。 | 78 | | [物品ID](https://pwmodding.wiki/docs/game-data/item-table) | 用于标识物品的唯一名称。 | 79 | | [PalID](https://pwmodding.wiki/docs/game-data/monster-table) | 用于标识帕鲁的唯一名称。 | 80 | | [EggID](https://pwmodding.wiki/docs/game-data/item-table) | 仅适用于蛋的物品 ID:
`PalEgg_Dark_01(暗黑帕鲁蛋)` 到 `PalEgg_Dark_05(巨大暗黑帕鲁蛋)`、`PalEgg_Dragon_01(龙蛋)` 到 `PalEgg_Dragon_05(巨大龙蛋)`、
`PalEgg_Earth_01(粗糙帕鲁蛋)` 到 `PalEgg_Earth_05(巨大粗糙帕鲁蛋)`、`PalEgg_Electricity_01(电气帕鲁蛋)` 到 `PalEgg_Electricity_05(巨大电气帕鲁蛋)`、
`PalEgg_Fire_01(发热帕鲁蛋)` 到 `PalEgg_Fire_05(巨大发热帕鲁蛋)`、`PalEgg_Ice_01(结冰帕鲁蛋)` 到 `PalEgg_Ice_05(巨大结冰帕鲁蛋)`、
`PalEgg_Leaf_01(新绿帕鲁蛋)` 到 `PalEgg_Leaf_05(巨大新绿帕鲁蛋)`、`PalEgg_Normal_01(平凡帕鲁蛋)` 到 `PalEgg_Normal_05(巨大平凡帕鲁蛋)`、
`PalEgg_Water_01(潮湿帕鲁蛋)` 到 `PalEgg_Water_05(巨大潮湿帕鲁蛋)`。 | 81 | | [PalJSON](../Files/PalJSON_ZH_CN#json-file-template) | 包含帕鲁属性的 JSON 文本或文件。模板和更多内容请详见 [PalJSON](../Files/PalJSON_ZH_CN#template)。 | 82 | -------------------------------------------------------------------------------- /Wiki/Commands/deletepals.md: -------------------------------------------------------------------------------- 1 | ### [<<<](README.md) Commands 2 | 3 | #### English / [简体中文](./deletepals_ZH_CN.md) 4 | 5 | # /deletepals 6 | 7 | | |Permissions| 8 | |-|:---------:| 9 | |Admin Only|X| 10 | |Chat|X| 11 | |RCON|X| 12 | 13 | ### Description 14 | Deletes multiple pals from a player's palteam and palbox based on a filter, which can be configured through command arguments. Deleted pals will create a .json file so you can restore pals upon invalid usage. This requires manual file lookup for now. A counter command to restore pals is planned in a future release. 15 | 16 | The delete pals can be found in `/Pal/Binaries/Win64/PalDefender/pals/deleted//`. 17 | 18 | ### Syntax 19 | 20 | ```cmd 21 | /deletepals 22 | ``` 23 | 24 | ### PalFilter 25 | The filter allows multiple keywords in one commandline to delete pals by the filter. It is very complex to understand on first try, so please try it in a test environment first. 26 | 27 | Following filter keywords exist: 28 | |Keyword|Values|Symbols|Explanation| 29 | |-|:---------:|:---------:|-| 30 | |ID|[PalID](../Data%20Lists/Pals.md) or list of [PalID](../Data%20Lists/Pals.md)s|None|One or more IDs separated by a `,` comma. Dont use to ignore ID in the filter.| 31 | |Nick|String|None|the name of the pals to filter. dont use if not needed.| 32 | |Gender|`male` or `female`|None|adds a filter by male or female. dont use if you want both.| 33 | |Level|Number|`<`, `>`, `<=`, `>=`, `=`, `!=`|Filter by level. Use a symbol to specify. `Level>=35` will include pals at lvl 35 and higher.| 34 | |Rank|Number|`<`, `>`, `<=`, `>=`, `=`, `!=`|Filter by rank. Use a symbol to specify. `Rank>1` will include pals which rank is above 1. Rank means the rank by combining the same pal.| 35 | |Lucky|`true` or `false`|None|Filter if the pal should have or not have the lucky flag. Also known as "shiny".| 36 | |Passives|[PassiveSkill](../Data%20Lists/PassiveSkills.md) or list of [PassiveSkill](../Data%20Lists/PassiveSkills.md)s|None|One or more IDs separated by a `,` comma. Dont use to ignore ID in the filter.| 37 | |Limit|Number|None|A max limit of how many pals to filter. `Limit 5` would only allow the filter to find 5 pals even tho it could grab way more.| 38 | 39 | ### Usage 40 | ```cmd 41 | /deletepals 76567890987654321 ID Serpent, PinkLizard Level>10 Gender male Limit 3 42 | ``` 43 | This will delete max 3 pals which level is higher than 10 (so lvl 10 and below wont be deleted), gender is male and the pal ID is Serpent or PinkLizard. 44 |
45 |
46 |
47 | 48 | ```cmd 49 | /deletepals 76567890987654321 ID Anubis Rank >= 3 50 | ``` 51 | This will delete every Anubis which Rank is 3 or above 3. 52 |
53 |
54 |
55 | 56 | ```cmd 57 | /deletepals 76561198033277828 Passives CraftSpeed_up1,CraftSpeed_up2,Rare,PAL_CorporateSlave 58 | ``` 59 | This deletes every pal that has all 4 passives. 60 | 61 | Passives are: 62 | - CraftSpeed_up1 = Serious
63 | - CraftSpeed_up2 = Artisan
64 | - Rare = Lucky
65 | - PAL_CorporateSlave = Work Slave
66 | 67 | so it needs all 4 passives, if it has only 3 it will be ignored. -------------------------------------------------------------------------------- /Wiki/Commands/deletepals_ZH_CN.md: -------------------------------------------------------------------------------- 1 | ### [<<<](README_ZH_CN.md) 命令 2 | 3 | #### [English](./deletepals.md) / 简体中文 4 | 5 | # /deletepals 6 | 7 | | |权限| 8 | |-|:---------:| 9 | |仅管理员|X| 10 | |聊天|X| 11 | |RCON|X| 12 | 13 | ### 描述 14 | 根据过滤器从玩家的帕鲁队伍和帕鲁终端中删除多个帕鲁。过滤器可以通过命令参数配置。被删除的帕鲁将创建一个 .json 文件,以便在使用不当时恢复帕鲁。目前需要手动查找文件,未来版本计划提供一个恢复帕鲁的命令。 15 | 16 | 被删除的帕鲁可以在 `/Pal/Binaries/Win64/PalDefender/pals/deleted//` 中找到。 17 | 18 | ### 语法 19 | 20 | ```cmd 21 | /deletepals 22 | ``` 23 | 24 | ### PalFilter 25 | 该过滤器允许在一个命令行中使用多个关键字来删除符合条件的帕鲁。第一次使用时可能会比较复杂,所以请先在测试环境中尝试。 26 | 27 | 以下是过滤器关键字及其说明: 28 | |关键字|值|符号|说明| 29 | |-|:---------:|:---------:|-| 30 | |ID|[PalID](../Data%20Lists/Pals.md) 或帕鲁列表|无|一个或多个 ID,使用 `,` 逗号分隔。不要用来忽略 ID 的过滤。| 31 | |Nick|字符串|无|过滤帕鲁的名称。如果不需要,请不要使用。| 32 | |Gender|`male` 或 `female`|无|按性别过滤。如果不需要过滤性别,请不要使用。| 33 | |Level|数字|`<`, `>`, `<=`, `>=`, `=`, `!=`|按等级过滤。使用符号指定。例如,`Level>=35` 会包括等级为 35 及以上的帕鲁。| 34 | |Rank|数字|`<`, `>`, `<=`, `>=`, `=`, `!=`|按排名过滤。使用符号指定。例如,`Rank>1` 会包括排名高于 1 的帕鲁。排名是根据相同帕鲁的综合排名。| 35 | |Lucky|`true` 或 `false`|无|过滤是否为稀有(闪亮)伙伴。| 36 | |Passives|[PassiveSkill](../Data%20Lists/PassiveSkills_ZH_CN.md) 或被动技能列表|无|一个或多个 ID,使用 `,` 逗号分隔。不要用来忽略技能的过滤。| 37 | |Limit|数字|无|限制过滤结果的数量。例如,`Limit 5` 会使过滤器只找到 5 个帕鲁,即使可以找到更多。| 38 | 39 | ### 用法 40 | ```cmd 41 | /deletepals 76567890987654321 ID Serpent, PinkLizard Level>10 Gender male Limit 3 42 | ``` 43 | 这将删除最多 3 个等级高于 10 的帕鲁(因此等级为 10 或以下的帕鲁不会被删除),性别为男性,且帕鲁为滑水蛇或博爱蜥。 44 |
45 |
46 |
47 | 48 | ```cmd 49 | /deletepals 76567890987654321 ID Anubis Rank >= 3 50 | ``` 51 | 这将删除所有排名为 3 或以上的阿努比斯。 52 |
53 |
54 |
55 | 56 | ```cmd 57 | /deletepals 76561198033277828 Passives CraftSpeed_up1,CraftSpeed_up2,Rare,PAL_CorporateSlave 58 | ``` 59 | 这将删除拥有所有 4 个被动技能的帕鲁。 60 | 61 | 被动技能如下: 62 | - CraftSpeed_up1 = Serious(认真)
63 | - CraftSpeed_up2 = Artisan(工匠精神)
64 | - Rare = Lucky(稀有)
65 | - PAL_CorporateSlave = Work Slave(社畜)
66 | 67 | 因此,需要拥有这 4 个被动技能,如果只拥有 3 个,它将被忽略。 -------------------------------------------------------------------------------- /Wiki/Commands/givepal_j.md: -------------------------------------------------------------------------------- 1 | ### [<<<](README.md) Commands 2 | 3 | #### English / [简体中文](./givepal_j_ZH_CN.md) 4 | 5 | # /givepal_j 6 | 7 | | |Permissions| 8 | |-|:---------:| 9 | |Admin Only|X| 10 | |Chat|X| 11 | |RCON|X| 12 | 13 | ### Description 14 | Gives the player a Pal with the provided attributes in the json. If their party is full, it will go into their Pal storage. 15 | 16 | ### Syntax 17 | 18 | ```cmd 19 | /givepal_j 20 | ``` 21 | See [PalJSON](../Files/PalJSON.md#json-file-template) to see how PalJSONs are done. 22 | 23 | ### Usage 24 | ```cmd 25 | /givepal_j 76567890987654321 OPnubis.json 26 | ``` 27 | ```cmd 28 | /givepal_j 76567890987654321 OPnubis 29 | ``` 30 | -------------------------------------------------------------------------------- /Wiki/Commands/givepal_j_ZH_CN.md: -------------------------------------------------------------------------------- 1 | ### [<<<](README_ZH_CN.md) 命令 2 | 3 | #### [English](./givepal_j.md) / 简体中文 4 | 5 | # /givepal_j 6 | 7 | | |权限| 8 | |-|:---------:| 9 | |仅限管理员|X| 10 | |聊天|X| 11 | |RCON|X| 12 | 13 | ### 描述 14 | 给玩家一个拥有提供的属性的伙伴。如果玩家携带的帕鲁已满,将进入帕鲁终端。 15 | 16 | ### 语法 17 | 18 | ```cmd 19 | /givepal_j 20 | ``` 21 | 查看 [PalJSON](../Files/PalJSON_ZH_CN.md#json-file-template) 了解如何编写 PalJSON. 22 | 23 | ### 用法 24 | ```cmd 25 | /givepal_j 76567890987654321 OPnubis.json 26 | ``` 27 | ```cmd 28 | /givepal_j 76567890987654321 OPnubis 29 | ``` 30 | -------------------------------------------------------------------------------- /Wiki/Data Lists/EPalWazaIDs.md: -------------------------------------------------------------------------------- 1 | ### [<<<](README.md) Data Lists 2 | 3 | #### English / [简体中文](./EPalWazaIDs_ZH_CN.md) 4 | 5 | # EPalWaza IDs 6 | Feel free to contribute! 7 | 8 | |Name|ID|Effect| 9 | |----|--|------| 10 | |Punch|`Human_Punch`|Punch with conviction; believe in the power of the fist.| 11 | ||`WorkAttack`|| 12 | |Throw|`Throw`|Believe in your own style and throw.| 13 | |Scratch|`Scratch`|Trust your own nails and scratch.| 14 | |Ice Missile|`EnergyShot`|Charges energy and fires it as a sphere.| 15 | |Spinning Roundhouse|`Unique_Anubis_LowRoundKick`|Anubis' exclusive skill. Performs a spin kick with its strong legs, sweeping enemies over a wide area.| 16 | |Ground Smash|`Unique_Anubis_GroundPunch`|Anubis' exclusive skill. Leaps high into the air and strikes a punch to the ground, causing a shockwave that deals damge over a wide area.| 17 | |Forceful Charge|`Unique_Anubis_Tackle`|Anubis' exclusive skill. Rapidly pursues its foes while releasing energy and unleashing a powerful punch.| 18 | |Antler Uppercut|`Unique_Deer_PushupHorn`|Eikthyrdeer's exclusive skill. Charges at foes and uses antlers to launch them into the air. When used while riding, the direction of the charge can be controlled.| 19 | |Pal Blast|`HyperBeam`|Charges destructive energy before firing a high-powered beam forward across a wide area.| 20 | |Power Shot|`PowerShot`|Charges energy into a focused blast.| 21 | |Power Bomb|`PowerBall`|Charges a massive amount of energy before firing a large destructive ball.| 22 | |Fierce Fang|`Unique_Garm_Bite`|Direhowl's exclusive skill. Swiftly leaps at an enemy and bites into them.| 23 | |Intimidate|`Intimidate`|Shocks surrounding enemies with overwhelming power.| 24 | |Reckless Charge|`Unique_Boar_Tackle`|Rushoar's exclusive skill. Takes aim at a foe and rushes at them with a fierce charge.| 25 | |Punch Flurry|`Unique_PinkCat_CatPunch`|Cattiva's exclusive skill. Chases after enemies, swinging both arms and delivering a flurry of punches.| 26 | |Botanical Smash|`Unique_FlowerDinosaur_Whip`|Dinossom's exclusive skill. Uses its large tail to strike the ground in front of it, delivering a shockwave in a straight line.| 27 | |Roly Poly|`Unique_SheepBall_Roll`|Lamball's exclusive skill. Curls into a ball, rolling after any enemies in its way. Becomes dizzy and unable to move after the attack ends.| 28 | |Chicken Rush|`Unique_ChickenPal_ChickenPeck`|Chikipi's exclusive skill. Flies at enemies in its sights, attacking them with its sharp beak.| 29 | |Ground Pound|`Unique_Gorilla_GroundPunch`|Gorirat's exclusive skill. Pounds the ground twice before leaping into the air and delivers a powerful punch.| 30 | |Earth Impact|`Unique_Grassmammoth_Earthquake`|Mammorest's exclusive skill. Uses its massive body to shake the earth, dealing damage over a wide area.| 31 | |AirCanon|`AirCanon`|Quickly fires a burst of highly pressurized air.| 32 | |Crushing Punch|`Unique_GrassPanda_MusclePunch`|Mossanda's exclusive skill. Winds up its right arm before striking an enemy with a devastating punch.| 33 | |Focus Shot|`Unique_RobinHood_BowSnipe`|Robinquill's exclusive skill. Takes aim while drawing its bow before releasing a powerful shot at an enemy.| 34 | |Fluffy Tackle|`Unique_Alpaca_Tackle`|Melpaca's exclusive skill. Charges forward while surrounded by an adorable aura.| 35 | |Kingly Slam|`Unique_KingAlpaca_BodyPress`|Kingpaca's exclusive skill. Leaps high into the air before smashing into an enemy with its chubby, massive body.| 36 | |Jumping Claw|`Unique_Werewolf_Scratch`|Loupmoon's exclusive skill. Leaps forward and attacks twice with vicious claws imbued with dark energy.| 37 | |Cloud Tempest|`Unique_FengyunDeeper_CloudTempest`|Fenglope's exclusive skill. Charges forward while manipulating the atmosphere to create a pressurized wind tunnel around itself.| 38 | |Hellfire Claw|`Unique_Baphomet_SwallowKite`|Incineram's exclusive skill. Draws near enemies using its left claw to slash them into the air before cutting them down with its right claw.| 39 | |Giga Horn|`Unique_HerculesBeetle_BeetleTackle`|Warsect's exclusive skill. Skewers enemies with its four sturdy horns.| 40 | |Tornado Attack|`Unique_HawkBird_Storm`|Nitewing's exclusive skill. Generates a tornado ahead before soaring towards its target.| 41 | |Gale Claw|`Unique_Eagle_GlidingNail`|Galeclaw's exclusive skill. With talons outstretched, it glides forward in a ferocious charge.| 42 | |Implode|`SelfDestruct`|Risks its life to cause a violent explosion. Becomes incapacitated afterwards.| 43 | |Bee Quiet|`SelfDestruct_Bee`|Risks its life to cause a violent explosion, but receives the honor of falling in battle.| 44 | |Megaton Implode|`SelfExplosion`|Risks life to cause a massive explosion. Those who perish for their duty become glistening stars in the night sky.| 45 | |Ignis Blast|`FireBlast`|Hurls a ball of fire straight at an enemy.| 46 | |Ignis Breath|`Flamethrower`|Shoots flames at an enemy, dealing continuous damage.| 47 | |Fire Ball|`FireBall`|Creates a giant ball of flame and hurls it at an enemy. The ball explodes over a wide area upon impact.| 48 | |Flare Arrow|`FlareArrow`|Fires three flaming arrows in succession that home in on an enemy.| 49 | |Spirit Fire|`FireSeed`|Shoots fireballs towards an enemy. The fireballs explode after a short distance, generating smaller fireballs that spread forward.| 50 | |Phoenix Flare|`Unique_Horus_FlareBird`|Faleris' exclusive skill. After creating scorching tornadoes, it cloaks itself in hellfire and charges forward.| 51 | |Flare Storm|`FlareTornado`|Generates two flaming tornadoes on either side before launching them at an enemy.| 52 | |Ignis Rage|`Inferno`|Infuses the surrounding ground with energy, causing it to explode after a set amount of time.| 53 | |Ignis Charge|`Unique_FireKirin_Tackle`|Pyrin's exclusive skill. Charges forward while engulfed in a veil of flames. Flames continue to burn in its path.| 54 | |Daring Flames|`Unique_AmaterasuWolf_FireCharge`|Kitsun's exclusive skill. Charges forward with great speed while enveloped in intense blue flames.| 55 | |Volcanic Burst|`Unique_VolcanicMonster_MagmaAttack`|Reptyro's exclusive skill. Raises its front legs and slams them into the ground, causing a volcanic eruptions under its enemies. It simultaneously bombards them with volcanic bombs from above.| 56 | |Blazing Horn|`Unique_FlameBuffalo_FlameHorn`|Arsox's exclusive skill. Takes aim and charges with fierce momentum while raising its horn.| 57 | |Volcanic Rain|`Eruption`|Fires countless volcanic bombs into the sky. After a while, the bombs rain down around their originator.| 58 | |Flame Wall|`FlameWall`|Creates a wall of flames at the enemy's location. The wall of flames will remain for a while, and deal damage to the enemies it touches.| 59 | |Flame Funnel|`FlameFunnel`|Creates multiple spheres of fiery energy, from which countless fireballs shoot towards the enemy.| 60 | |Aqua Gun|`WaterGun`|Hurls a ball of water straight at an enemy.| 61 | ||`WaterWave`|Creates a wall with a water vortex that slowly moves forward.| 62 | |Hydro Laser|`HydroPump`|Shoots pressurized water at extreme velocities, sweeping over a wide area in front of it.| 63 | |Aqua Burst|`WaterBall`|Creates a giant ball of water and hurls it at an enemy.| 64 | |Call Wave|`TidalWave`|Generates small waves over a wide area that slow an enemy's movements before assailing them with a giant wave.| 65 | |Hydro Jet|`AquaJet`|Hurls a high speed ball of water at an enemy.| 66 | |Bubble Blast|`BubbleShot`|Fires numerous bubbles that slowly pursue an enemy.| 67 | |Acid Rain|`AcidRain`|Creates acidic clouds that pour down acid rain on enemies.| 68 | |Surfing Slam|`Unique_BluePlatypus_Toboggan`|| 69 | |Wind Cutter|`WindCutter`|Fires a high speed blade of wind that flies straight at an enemy.| 70 | |Grass Tornado|`GrassTornado`|Generates two tornadoes on either side before launching them at an enemy.| 71 | |Solar Blast|`SolarBeam`|Charges solar energy before blasting enemies with a powerful beam.| 72 | |Seed Machine Gun|`SeedMachinegun`|Fires a volley of hard seeds at enemies in front of it.| 73 | |Seed Mine|`SeedMine`|Launches a deadly seed. If it hits an enemy, the seed explodes.| 74 | |Spine Vine|`RootAttack`|Generates spiny thorns that chase an enemy along the ground, piercing them from below.| 75 | |Multicutter|`SpecialCutter`|The user fires three high-speed blades of wind in quick succession that fly straight at enemies.| 76 | |Spinning Staff|`Unique_QueenBee_SpinLance`|Elizabee's exclusive skill. Channels power into its staff, and unleashes it in a whirl.| 77 | |Thunder Rain|`ThunderRain`|Calls lightning that strikes an enemy after a set amount of time has passed.| 78 | |Electric Ball|`ThunderBall`|Fires an electric ball that slowly pursues an enemy.| 79 | |Lightning Streak|`LineThunder`|Generates a lightning bolt that moves forward in a line.| 80 | |Cross Lightning|`CrossThunder`|Generates two lightning bolts that advance left and right, blocking either direction.| 81 | |Tri-Lightning|`ThreeThunder`|Generates lightning that strikes an enemy three times from above.| 82 | |Shockwave|`ElecWave`|Quickly discharges electricity, shocking those around it.| 83 | |Lightning Bolt|`Thunderbolt`|Charges electric energy before blasting enemies with a powerful shock.| 84 | |Plasma Funnel|`ThunderFunnel`|Creates two balls of electric energy that fire numerous lightning orbs at enemies.| 85 | |Spark Blast|`SpreadPulse`|Releases lightning orbs in a fan shape, spreading as they travel.| 86 | |Lock-on Laser|`LockonLaser`|Takes aim at an enemy before firing a super high speed laser.| 87 | |Lightning Strike|`LightningStrike`|Acts as a lightning rod, calling down thunderbolts that electrocute the surrounding area.| 88 | |Lightning Claw|`Unique_ElecPanda_ElecScratch`|Grizzbolt's exclusive skill. After leaping at an enemy and tearing at it twice with its electrically charged claws, it attacks the ground, sending an electric shock throughout the area.| 89 | |Lightning Gale|`Unique_Kirin_LightningTackle`|Univolt's exclusive skill. Generates bolts of lightning all around while charging at its target.| 90 | |Ice Missile|`IceMissile`|Creates ice lances in the air that fly towards enemies.| 91 | |Iceberg|`BlizzardLance`|Summons a sharp ice lance under an enemy.| 92 | |White Out|`SnowStorm`|The user gathers frozen winds, damaging enemies around it before blasting them with a blizzard.| 93 | |Blizzard Spike|`IcicleThrow`|Creates a giant lump of ice and hurls it at an enemy. It deals damage to those in the surrounding area upon impact.| 94 | |Crystal Wing|`Unique_IceHorse_IceBladeAttack`|Frostallion's exclusive skill. Dashes forward while concentrating frigid air around its wings, using them to slash enemies with icy blade.| 95 | |Icicle Cutter|`IceBlade`|Creates a crescent blade of ice and hurls it forward.| 96 | |Sand Tornado|`SandTornado`|Generates two sand tornadoes on either side before launching them at an enemy.| 97 | |Stone Cannon|`ThrowRock`|Digs up a boulder and hurls it at an enemy.| 98 | |Rock Lance|`RockLance`|Generates a sharp rock spear under an enemy.| 99 | |Bog Blast|`MudShot`|Hurls sticky mud at an enemy.| 100 | |Stone Blast|`StoneShotgun`|Fires a barrage of stones forward.| 101 | |Shell Spin|`Unique_DrillGame_ShellAttack`|Digtoise's exclusive skill. Moves while spinning its whole body at high speed. Drills through enemies, dealing continuous damage.| 102 | |Dark Laser|`DarkLaser`|Charges dark energy before blasting enemies with a powerful beam.| 103 | |Shadow Burst|`DarkWave`|Quickly discharges dark energy, damaging those around it.| 104 | |Nightmare Ball|`ShadowBall`|Creates a giant ball of darkness and hurls it at an enemy.| 105 | |Psycho Gravity|`Psychokinesis`|Utilizes psychokinesis to grab enemies before flinging them to the ground from above.| 106 | |Poison Blast|`PoisonShot`|Hurls poison sludge at an enemy.| 107 | |Spirit Flame|`GhostFlame`|Fires three balls of malice that relentlessly pursue an enemy.| 108 | |Phantom Peck|`Unique_DarkCrow_TelePoke`|Cawgnito's exclusive skill. Teleports next to an enemy before attacking with its beak.| 109 | |Dragon Meteor|`DragonMeteor`|Summons numerous small meteorites and launches them at an enemy.| 110 | |Draconic Breath|`DragonBreath`|Exhales breath imbued with draconic energy, dealing continuous damage to those in front of it.| 111 | |Dragon Burst|`DragonWave`|Quickly discharges draconic energy, damaging those around it.| 112 | |Dragon Cannon|`DragonCanon`|Hurls an energy ball imbued with draconic energy at an enemy.| 113 | |Mystic Whirlwind|`Unique_FairyDragon_FairyTornado`|Elphidran's exclusive skill. Generates twin whirlwinds imbued with a mysterious power that pursues enemies.| 114 | ||`Funnel_DreamDemon`|| 115 | ||`Funnel_RaijinDaughter`|| 116 | ||`StardustArrow`|| 117 | |Rockburst|`Tremor`|Causes the ground to shake before hurling a massive stone mass at its surroundings.| 118 | |Crystal Breath|`FrostBreath`|Enshrouds an enemy in a frigid blast of air, dealing continuous damage.| 119 | |Diamond Rain|`DiamondFall`|Creates numerous lumps of ice that are consecutively dropped on a foe's head.| 120 | |Beam Slicer|`BeamSlicer`|Mows down the frontal area with a beam imbued with dragon power. The area touched by the beam will also explode after a few moments.| 121 | |Comet Strike|`Commet`|Drops a meteorite straight down, generating a shock wave around the impact area.| 122 | |Dark Ball|`DarkBall`|Unleashes a sphere of darkness that slowly tracks down an enemy.| 123 | ||`DarkFog`|| 124 | |Poison Fog|`PoisonFog`|Generates a fog of poison in front, causing the opponent to become poisoned.| 125 | |Dark Whisp|`DarkLegion`|Fires a menacing ball of dark energy that pursues enemies.| 126 | |Dark Cannon|`DarkCanon`|Hurls an energy ball imbued with dark energy at an enemy.| 127 | |Dark Arrow|`DarkArrow`|Fires off dark energy that homes in on an enemy.| 128 | |Umbral Surge|`DarkPulse`|Fires high-speed dark orbs in a fan shape, spreading as they travel.| 129 | ||`DarkTornado`|| 130 | |Apocalypse|`Apocalypse`|Generates several dark vortexes around the enemy.| 131 | |Star Mine|`StarMine`|Generates stars around the enemy that explode on contact. Stars also explode after some time.| 132 | |Air Blade|`AirBlade`|Sends out sharp blades of air in a fan shape.| 133 | |Holy Burst|`HolyBlast`|Creates a wide explosion of light at the enemy's location and around it.| 134 | |Circle Vine|`RootLance`|Sprouts sharp roots in and around the enemy's location.| 135 | ||`LeafWind`|| 136 | ||`SeedBurst`|| 137 | |Splash|`LineGeyser`|Generates a column of water that travels in a straight line.| 138 | |Curtain Splash|`WallSplash`|Continously creates walls made from water columns at the enemy's location.| 139 | |TriSpark|`TriSpark`|A high-speed lightning ball that flies in a straight line. Simultaneously fires slow lightning balls that track the enemy.| 140 | |Thunderstorm|`ThunderStorm`|Generates a huge tornado of lightning that moves slowly towards the enemy.| 141 | |Sand Twister|`SandTwister`|Creates multiple sand tornadoes. The tornadoes continuously spin in circles.| 142 | |Icicle Line|`IcicleLine`|Generates pillars of ice that move in a straight line in three directions.| 143 | ||`FrostBeam`|| 144 | ||`BlizzardFlower`|| 145 | |Comet Barrage|`ThreeCommet`|Drops meteorites one after another, generating shock waves around the impact areas.| 146 | |Meteorain|`CommetRain`|Drops countless meteorites, generating an array of shock waves.| 147 | |Blast Cannon|`BlastCanon`|Fires an energy bullet imbued with dragon power at the enemy's location. Upon impact, the bullet shatters and creates a frontal long-range explosion.| 148 | |Charge Cannon|`ChargeCanon`|Fires an energy orb infused with draconic power at the enemy. The orb causes a wide-area explosion upon impact.| 149 | |All Range Thunder|`RangeThunder`|Generates lightning strikes that travel in a straight line in all directions.| 150 | |Thunder Rail|`Railbolt`|Charge the power of lightning to the limit and fires multiple simultaneous electric shocks at the enemy.| 151 | |Lethal Laser|`ShokeiLaser`|After aiming at the enemy, fires multiple ultra-fast lightning lasers.| 152 | |Poison Shower|`BubbleShower`|Focuses energy into the body and scatters poison orbs in all directions.| 153 | ||`WaterBalloon`|| 154 | |Chaos Laser|`ChaosLaser`|Charge the power of chaos, Fires a beam of light and darkness at the enemy at the same time.| 155 | |Icicle Bullet|`IciclePierce`|Generates multiple sharp ice blocks in the sky and fires them at the enemy.| 156 | |Double Blizzard Spike|`DoubleIcicleThrow`|Creates two huge ice blocks and fires them at the enemy one after another. On impact, it also shocks those close by.| 157 | |Absolute Frost|`IceAge`|Throws icicles in a wide area from under the enemy's feet.| 158 | |Raid Cutter|`RaidCutter`|Shoots countless wind swords that fly straight towards the enemy.| 159 | |Wind Edge|`WindEdge`|Launches sharp blades of air that fan out.| 160 | ||`GrassTyphoon`|| 161 | ||`SeedShotgun`|| 162 | |Flare Twister|`FlareTwister`|Creates multiple flame tornadoes. The tornado continues to spin in circles.| 163 | ||`TripleCannon`|| 164 | ||`TrisRing`|| 165 | |Flame Breath|`Unique_BirdDragon_FireBreath`|Vanwyrms exclusive skill. Advances while breathing fire from its mouth.| 166 | |Firefist Breathstorm|`Unique_BlackMetalDragon_FirePunch`|Astegon's exclusive skill. After throwing two punches forward, it exhales a dragon breath downward.| 167 | |Jumping Stinger|`Unique_DarkScorpion_Pierce`|Menasting's exclusive skill. Jumps high and forcefully stabs its prey with its tail. The poison from the tail is deadly.| 168 | |Spirit Dash|`Unique_GhostBeast_Tossin`|Maraith's exclusive skill. While running slowly, it continuously launches flickering fireballs toward the enemy.| 169 | |Beam Comet|`Unique_JetDragon_JumpBeam`|Jetragon's exclusive skill. Illuminates its wings and fires innumerable beams as it flies towards the enemy. The beams explode on impact.| 170 | |Lightning Dive|`Unique_ThunderBird_ThunderStorm`|Beakon's exclusive skill. First, it strikes the enemy's location with lightning. Then, while gliding forward, it drops lightning to the left and right.| 171 | |Snow Bowling|`Unique_Yeti_SnowBall`|Wumpo's exclusive skill. Rolls a snowball as it moves forward, and when it grows large enough, it throws it to cause an explosion.| 172 | |Cat Press|`Unique_NaughtyCat_CatPress`|Grintale's exclusive skill. Grins menacingly before leaping into the air and smashing foes with its body.| 173 | |Freezing Charge|`Unique_IceDeer_IceHorn`|Reindrix's exclusive skill. Charges at an enemy with antlers adorned in ice.| 174 | |Magna Crush|`Unique_KingBahamut_AirCrash`|Blazamut Ryu's exclusive skill. After a big jump, moves at high speed in the air, gathering strength to unleash a powerful punch.| 175 | |Volcanic Fang|`Unique_Manticore_InfernoStrike`|Blazehowl's exclusive skill. With momentum, it pounces mercilessly on the enemy and causes an explosion of fire at the point of impact.| 176 | |Needle Spear|`Unique_SoldierBee_NeedleLance`|Beegarde's exclusive skill. Charges at the enemy at high speed, delivering a final thrust with a spear.| 177 | |Beckon Lightning|`Unique_ThunderDog_InazumaShorai`|Rayhound's exclusive skill. Summons lightning one after another in front, then charges forward at high speed through the gaps between the falling bolts.| 178 | |Twin Spears|`Unique_BlackCentaur_TwoSpearRushes`|Necromus' exclusive skill. Clads its twin spears with vicious whirlwinds and charges forward, thrusting them one after the other.| 179 | |Divine Disaster|`Unique_BlackGriffon_TackleLaser`|Charges forward, generating orbs of light that automatically target enemies and unleash a barrage of lasers.| 180 | |Muscle Slam|`Unique_SakuraSaurus_SideTackle`|Broncherry's exclusive skill. Turns sideways before tackling enemies in front of it, sending them flying into the air.| 181 | |Kerauno|`Unique_ThunderDragonMan_ThunderSwordAttack`|Orserk's exclusive skill. Summons a spear of lightning while leaping into the air before throwing it at an enemy.| 182 | |Rush Beak|`Unique_RedArmorBird_TriplePeck`|Ragnahawk's exclusive skill. While flapping forward, it strikes with its beak to ignite fires in front, right, and left, causing a small explosion.| 183 | |Emperor Slide|`Unique_CaptainPenguin_BodySlide`|Penking's exclusive skill. Lies on its belly while generating frozen air all around it before sliding at enemies at high speed.| 184 | |Iaigiri|`Unique_Ronin_Iai`|Bushi's exclusive skill. Taking hold of the sword, it appears in front of an enemy in an instant and unleashes an ultra-fast sword draw attack.| 185 | |Spinning Roundhouse|`Unique_GrassRabbitMan_GrassRoundKick`|Verdash's exclusive skill. While jumping forward, it sweeps the surroundings with a high-speed spinning kick.| 186 | |Spear Thrust|`Unique_SaintCentaur_OneSpearRushes`|Paladius' exclusive skill. Charges forward while enveloped in holy power with its spear thrust ahead. The shield in its other hand blocks all attacks during the charge.| 187 | |Slither Slam|`Unique_Umihebi_WindingTackle`|Jormuntide's exclusive skill. Letting out a roar, it charges toward the enemy, twisting its water-covered body as it advances.| 188 | |Rocket Slam|`Unique_WeaselDragon_FlyingTackle`|Chillet's exclusive skill. Gathers a bit of strength and leaps forward. Always shuts its eyes tight in fear when landing.| 189 | |Blizzard Claw|`Unique_WhiteTiger_IceScratch`|Cryolinx's exclusive skill. First, it strikes with its claws, followed by a second slash, and culminates with a powerful slash using its entire body. When swinging the claws, ice pillars are launched forward in a fan shape.| 190 | ||`Unique_Baphomet_Dark_DarkKite`|| 191 | |Tempest Blizzard|`Unique_BirdDragon_Ice_IceBreath`|Vanwyrm Cryst's exclusive skill. Advances while exhaling cold air from its mouth.| 192 | |Dark Charge|`Unique_FireKirin_Dark_DarkTossin`|Pyrin Noct's exclusive skill. Charges forward while engulfed in a veil of dark flames. Flames continue to burn in its path.| 193 | |Frost Burst|`Unique_VolcanicMonster_Ice_IceAttack`|Reptyro Cryst's exclusive skill. Raises its front legs and slams them into the ground, causing a frozen blast under its enemies. It simultaneously bombards them with snow balls from above.| 194 | ||`Unique_IceHorse_Dark_DarkBladeAttack`|| 195 | |Lawn Bowling|`Unique_Yeti_Grass_GrassBall`|Wumpo Botan's exclusive skill. Rolls a ball made of grass as it moves forward, and when it grows large enough, it throws it to cause an explosion.| 196 | |Blast Punch|`Unique_GrassPanda_Electric_ElectricPunch`|Mossanda Lux's exclusive skill. Winds up its right arm before delivering an electrically charged punch.| 197 | |Nightmare Bloom|`Unique_NightLady_WarpBeam`|Bellanoir Libero's exclusive skill. Disappears suddenly, then reappears while firing a barrage of beams. The beams spread like a beautiful flower in bloom.| 198 | |Nightmare Ray|`Unique_NightLady_WarpBeam_Straight`|Bellanoir's exclusive skill. Disappears suddenly, then reappears while firing a barrage of beams.| 199 | |Flame Waltz|`Unique_NightLady_FlameNightmare`|Bellanoir Libero's exclusive skill. With a graceful dance, conjuries expanding rings of fire, then unleashes eerie flames that seek the enemies.| 200 | |Moonlight Beam|`Unique_MoonQueen_MoonBeam`|Selyne's exclusive skill. Stores energy in the moon on its back, then fires a crescent-shaped beam forward.| 201 | |Seigetsu Blade|`Unique_MoonQueen_MoonBlade`|Selyne's exclusive skill. Fires two consecutive high-speed blades imbued with the power of moonlight.| 202 | |Brawn Impact|`Unique_KingBahamut_ArmSmash`|Blazamut's exclusive skill. Raises and inflates its arms, then slams them together, causing a massive explosion in the surrounding area.| 203 | |Ground Cutter|`Unique_WingGolem_RoundCutter`|Knocklem's exclusive skill. Takes a big swing and throws the ring from its back. The ring flies in a circular trajectory.| 204 | |Upper Smash|`Unique_ScorpionMan_Uppercut`|Prixter's exclusive skill. Closes the distance to the enemy at high speed, then swings its pincers upward with full force.| 205 | |Earth Dash|`Unique_FeatherOstrich_Tossin`|Dazemu's exclusive skill. Accelerates all at once and dashes forward at high speed.| 206 | |Evil Slash|`Unique_DarkAlien_JumpScractch`|Xenovader's exclusive skill. Swiftly pounces and slashes with its left hand.| 207 | |Wholehearted Stance|`Unique_SifuDog_Counter`|Dogen's exclusive skill. Adopts an aiki stance. While in this stance, nulify any incoming attack, instantly close in on the enemy, and counter with a full-forced palm strike.| 208 | |Polykeraunos|`Unique_ThunderDragonMan_NumerousSwordAttack`|Orserk's exclusive skill. Summons numerous thunder spears and hurls them at the enemy. The first spear is imbued with the power of lightning and explodes after a few seconds.| 209 | |Heavy Thunder Tank|`Unique_ElecPanda_GatlingAttack`|Grizzbolt's exclusive skill. Pulls out a minigun out of nowhere and starts blasting. Finishes with a single, charged power shot.| 210 | |Bountiful Protection|`Unique_LilyQueen_LilyHealing`|Lyleen's exclusive skill. Uses her healing power to recover her health. Doesn't heal anyone else.| 211 | |Wind Barrier|`Unique_LilyQueen_WindBarrier`|A skill exclusive to the Lilikin species. Surround yourself with a wind barrier, Returns the blade of wind to the attacking opponent.| 212 | |Raging Flame Wave|`Unique_Horus_PerfectStorm`|Faleris' exclusive skill. Generates multiple scorching tornadoes and charges forward while gliding. The tornadoes converge in the center and eventually merge into a single massive tornado.| 213 | |Divine Disaster II|`Unique_BlackGriffon_TackleLaser2`|Shadowbeak's exclusive skill. As it charges forward, emits countless blue rays that automatically locate and pursue the enemy.| 214 | |Seigetsu Flash|`Unique_MoonQueen_IceMoonBlade`|Selyne's exclusive skill. Fires three consecutive high-speed slashes imbued with the power of moonlight.| 215 | |Satellite Bit|`Unique_DarkMechaDragon_SetFunnel`|Xenolord's exclusive skill. Generates four satellite-like wings with auto-attack functionality. These wings will automatically track and attack the enemy when the next attack is launched.| 216 | |Omega Laser|`Unique_DarkMechaDragon_FunnelLaser`|Xenolord's exclusive skill. Summons the light of destruction from subspace and continuously fires it in all directions, burning everything in its sight to ashes.| 217 | |Astral Ray|`Unique_DarkMechaDragon_ConvergentBeam`|Xenolord's exclusive skill. Concentrates energy filled with darkness and releases it all at once in a straight line.| 218 | |Beam Slash|`Unique_DarkMechaDragon_BeamSlash`|Xenolord's exclusive skill. Generates a high-output beam sword with the right hand and delivers two powerful slashes while moving at high speed.| 219 | |Cosmic Meteor|`Unique_DarkMechaDragon_WarpComet`|Xenolord's exclusive skill. Soars into the air at the speed of light and releases countless meteor projectiles. Afterwards, transforms into a comet and charges forward, causing a massive explosion upon impact.| 220 | |Magma Serpent|`Unique_Umihebi_Fire_FireWindingTackle`|Jormuntide Ignis's exclusive skill. Letting out a roar, it charges toward the enemy, twisting its fire-covered body as it advances.| 221 | |Stone Claw|`Unique_WhiteTiger_Ground_IronScratch`|Cryolinx Terra's exclusive skill. First, it strikes with its claws, followed by a second slash, and culminates with a powerful slash using its entire body. When swinging the claws, rocks are launched forward in a fan shape.| 222 | |Thunder Tempest|`Unique_FengyunDeeper_Electric_ThunderTempest`|Charges forward while manipulating the atmosphere and enveloping itself in thunderclouds.| 223 | |Snow Claw|`Unique_Werewolf_Ice_SnowScratch`|Loupmoon Cryst's exclusive skill. Leaps forward and attacks twice with vicious claws imbued with ice element.| 224 | |Phoenix Tide|`Unique_Horus_Water_AquaStorm`|Faleris Aqua's exclusive skill. After summoning a massive tornado, it envelops its body in water and charges forward.| 225 | |Daring Shadowstorm|`Unique_AmaterasuWolf_Dark_DarkCharge`|Kitsun Noct's exclusive skill. Charges forward with great speed while enveloped in intense purple flames.| 226 | |Stone Beat|`RockBeat`|Shakes the ground and lifts a massive boulder into the air.| 227 | |Glacial Impact|`Unique_SnowTigerBeastman_SnowImpact`|Bastigor's exclusive skill. Let out a mighty roar and leap into the air. Then, embed both arms into the ground to create a massive ice crack. Continue to channel power into the ground, ultimately causing a large explosion of ice energy| 228 | |Webstrike Impact|`Unique_PurpleSpider_SpiderRaid`|Tarantriss's exclusive skill. Spits out a ball of thread, entangling the target it hits. Then, rushes at full speed to the trapped target and delivers three slashing strikes to finish it off.| 229 | |Frost Talon|`Unique_SnowTigerBeastman_TrampleSlash`|Bastigor's exclusive skill. Stomps the ground, creating a fissure of ice ahead. Then, rapidly closes the distance and slashes with the right hand.| 230 | |Soul Drain|`Unique_MysteryMask_LifeSteal`|Omasculs exclusive skill. Suddenly appears near the enemy, firmly restraining them with its arms, and absorbs the HP of the restrained enemy.| 231 | |Grudge Barrage|`Unique_GrimGirl_BrutalMachete`|Splatterina's exclusive skill. Teleports instantly and launches a slash. It then teleports above the enemy, drives its weapon into them, and unleashes a wave of dark energy.| 232 | |Aegis Charge|`Unique_WhiteShieldDragon_ShieldTackle`|Silvegis's exclusive skill. Deploys a shield in front that reduces all types of attacks, then charges forward, crushing the enemy.| 233 | |Bolt Blink|`Unique_BlueThunderHorse_FlashDash`|Azurmane's exclusive skill. Moves with the speed of lightning, engulfing everything in its path.| 234 | |Holy Nova|`Unique_WhiteDeer_HolyPillar`|Celesdir's exclusive skill. After igniting a burst of holy light across a vast area ahead, it strides forward, radiating holy light around itself.| 235 | |Lethal Step|`Unique_NightBlueHorse_DeathStep`|Starryon's exclusive skill. Confuses enemies with flickering steps and launches slashing attack with its sharp horns.| 236 | |Crash Dash|`Unique_GoldenHorse_StoneDash`|Gildane's exclusive skill. Charges forward, hurling rocks to the left and right with great force.| 237 | |Predator Surge|`PredatorWave`|| 238 | |Predator Blast|`PredatorBeam`|| 239 | |Predator Mark|`PredatorLockon`|| 240 | -------------------------------------------------------------------------------- /Wiki/Data Lists/EPalWazaIDs_ZH_CN.md: -------------------------------------------------------------------------------- 1 | ### [<<<](./README_ZH_CN.md) 数据列表 2 | 3 | #### [English](./EPalWazaIDs.md) / 简体中文 4 | 5 | # 帕鲁技能 6 | 欢迎贡献! 7 | 8 | |名称|ID|效果| 9 | |----|--|------| 10 | |击打|`Human_Punch`|相信自己的拳头,出拳攻击。| 11 | ||`WorkAttack`|| 12 | |投掷|`Throw`|相信自己的技术,然后投掷。| 13 | |抓|`Scratch`|相信自己的爪,然后去抓。| 14 | |冰导弹|`EnergyShot`|充能后,将其转化为球体并发射。| 15 | |回旋踢|`Unique_Anubis_LowRoundKick`|阿努比斯的专用技能。 用强健的腿脚回旋飞踢,大范围横扫周围的敌人。| 16 | |粉碎大地|`Unique_Anubis_GroundPunch`|阿努比斯的专用技能。 高高跃起后,对地面使出猛力一击。 产生的衝击波将对大范围的目标造成伤害。| 17 | |巨力冲锋|`Unique_Anubis_Tackle`|阿努比斯的专用技能。 快速移动追击敌人, 释放能量同时不断挥出强劲利拳。| 18 | |尖角顶击|`Unique_Deer_PushupHorn`|紫霞鹿及亚种的专用技能。 面向敌人冲刺,扬起尖角攻击敌人。 如在骑乘时发动,可操控前进方向。| 19 | |帕鲁光束|`HyperBeam`|积蓄破坏性的能量, 朝前方大范围射出威力惊人的光束。| 20 | |能量射击|`PowerShot`|积蓄能量, 并将其化作子弹射出。| 21 | |元气弹|`PowerBall`|积蓄大量能量, 并将其化作巨大球体射出。| 22 | |狂野獠牙|`Unique_Garm_Bite`|猎狼的专用技能。 快速地向敌人飞扑,咬住敌人进行攻击。| 23 | |恐吓|`Intimidate`|以威慑的力量对周围的敌人造成冲击。| 24 | |猪突猛进|`Unique_Boar_Tackle`|草莽猪的专用技能。 瞄准敌人后,猛烈地冲向敌人。| 25 | |喵喵拳|`Unique_PinkCat_CatPunch`|捣蛋猫的专用技能。 挥舞双臂追击敌人, 连续挥出利拳。| 26 | |花龙摆尾|`Unique_FlowerDinosaur_Whip`|花冠龙及亚种的专用技能。 使用巨大的尾巴拍打前方地面, 对直线范围造成冲击。| 27 | |滚滚毛球|`Unique_SheepBall_Roll`|棉悠悠的专用技能。 咕噜咕噜地滚动并追击敌人。 攻击后会因晕眩而无法动弹。| 28 | |皮皮冲鸡|`Unique_ChickenPal_ChickenPeck`|皮皮鸡的专用技能。 瞄准并飞扑向敌人后,用尖喙突袭敌人。| 29 | |猩猩连打|`Unique_Gorilla_GroundPunch`|铁拳猿及亚种的专用技能。 猛击地面两次后高高跳起, 再赏给对方强力的一拳。| 30 | |地震|`Unique_Grassmammoth_Earthquake`|森猛犸及亚种的专用技能。 以巨大的身躯撼动大地, 对四周大范围的目标造成伤害。| 31 | |空气弹|`AirCanon`|以急速射出空气团块。| 32 | |筋肉重拳|`Unique_GrassPanda_MusclePunch`|叶胖达的专用技能。 不停转动右臂,向前方猛力出拳攻击。| 33 | |精准狙击|`Unique_RobinHood_BowSnipe`|羽箭射手及亚种的专用技能。 拉满弓弦全神贯注瞄准敌人后, 对敌人进行射击。| 34 | |绒毛冲撞|`Unique_Alpaca_Tackle`|美露帕的专用技能。 散发出可爱的气场并朝向前方冲刺。| 35 | |泰山压顶|`Unique_KingAlpaca_BodyPress`|君王美露帕及亚种的专用技能。 向上高高跳起后, 用丰满的庞大身躯辗压敌人。| 36 | |飞跃爪击|`Unique_Werewolf_Scratch`|月镰魔的专用技能。 向前一跃,迅速斩下两击。 且每次斩击都充满了暗属性的力量。| 37 | |阴云之岚|`Unique_FengyunDeeper_CloudTempest`|云海鹿的专用技能。 操控大气,借助风压向前猛冲。| 38 | |狱火爪|`Unique_Baphomet_SwallowKite`|炎魔羊及亚种的专用技能。 接近目标后跳起同时以左手爪子向上挥击, 再用右手爪子迅速向下挥砍。| 39 | |终极角击|`Unique_HerculesBeetle_BeetleTackle`|铠格力斯的专用技能。 以四支粗壮的角串起敌人。| 40 | |龙卷风|`Unique_HawkBird_Storm`|疾风隼的专用技能。 在前方制造出龙卷风后, 以滑翔的姿态冲向敌人。| 41 | |滑空爪|`Unique_Eagle_GlidingNail`|天擒鸟的专用技能。 向前伸出脚爪, 以滑翔的姿态猛力冲向目标。| 42 | |自爆|`SelfDestruct`|赌上性命引发爆炸。 使用后会陷入无法战斗的状态。| 43 | |蜂!蜂!蜂!|`SelfDestruct_Bee`|赌上性命引发爆炸。 是种为了荣誉而牺牲自己的技能。| 44 | |超自爆|`SelfExplosion`|赌上性命引发大爆炸。 使用后便会化作夜空中闪耀的明星。| 45 | |烈焰射击|`FireBlast`|瞄准后发射可笔直飞向敌人 的火焰弹。| 46 | |烈焰放射|`Flamethrower`|面向敌人释放火焰, 持续对目标造成伤害。| 47 | |烈焰球|`FireBall`|在头上生成巨大火球,并向敌人发射。 中弹后会爆炸,造成大范围爆炸冲击波。| 48 | |烈焰箭|`FlareArrow`|连续发射3支高速火箭 并追击敌人。| 49 | |烈焰溅射|`FireSeed`|向敌人发射火球。 稍作飞行后会破裂 并向前方放射小型火球。| 50 | |凤凰翔波|`Unique_Horus_FlareBird`|荷鲁斯的专用技能。 扇起炙热龙卷风后, 身体被狱火包围,一边滑翔一边突袭敌人。| 51 | |烈焰风暴|`FlareTornado`|在左右两侧生成炙热的龙卷风, 并扇向敌人。| 52 | |地狱火|`Inferno`|使敌人周围地面活性化, 并在一定时间后爆炸。| 53 | |烈焰冲撞|`Unique_FireKirin_Tackle`|火麒麟的专用技能。 带着缠绕全身的火焰向前猛冲。 途经之处均会留下滚滚火焰。| 54 | |风林火山|`Unique_AmaterasuWolf_FireCharge`|苍焰狼的专用技能。 带着缠绕全身的青蓝火焰,气势汹汹地向前猛冲。| 55 | |火山爆发|`Unique_VolcanicMonster_MagmaAttack`|熔岩兽的专用技能。 举起前脚猛击地面, 使岩浆于敌人所在处喷发。 喷发时四周更会有火山弹倾泻而下。| 56 | |炽热角击|`Unique_FlameBuffalo_FlameHorn`|炽焰牛的专用技能。 锁定敌人后, 以凶猛气势顶着锐利牛角冲向对方。| 57 | |熔岩爆发|`Eruption`|向上空喷射无数熔岩弹。 一段时间后,射出的熔岩弹将如雨一般散落在周围。| 58 | |爆烈火墙|`FlameWall`|在敌人的位置燃起火焰之墙。 火墙将持续一段时间, 对碰到的敌人造成伤害。| 59 | |流火|`FlameFunnel`|使用火焰的力量做出复数个球体, 然后向敌人发射无数火球。| 60 | |水枪|`WaterGun`|发射水弹 笔直飞向对方。| 61 | |高压水击|`WaterWave`|用水之龙卷风在前方生成墙壁 并使其缓慢前进。| 62 | |高压水炮|`HydroPump`|猛烈地释放出水流 并向前方大范围横扫。| 63 | |爆裂水球|`WaterBall`|在头上生成巨大水球 瞄准敌人并发射。| 64 | |呼叫波|`TidalWave`|大范围掀起小波浪 延缓敌人行动后, 用大型波浪攻击敌人。| 65 | |水流射击|`AquaJet`|朝敌人发射高速水弹。| 66 | |泡泡射击|`BubbleShot`|发射大量泡沫 并缓慢追击敌人。| 67 | |酸雨|`AcidRain`|生成酸性云朵 在敌人头上下酸雨。| 68 | |乘风破浪|`Unique_BluePlatypus_Toboggan`|| 69 | |风刃|`WindCutter`|发射超高速风刃 瞄准后笔直飞向敌人。| 70 | |绿野飓风|`GrassTornado`|在左右两侧生成龙卷风, 并扇向敌人。| 71 | |太阳光束|`SolarBeam`|积蓄太阳之力 瞄准敌人发射强劲光线。| 72 | |种子机关枪|`SeedMachinegun`|释放大量坚硬的种子 攻击前方的敌人。| 73 | |种子地雷|`SeedMine`|发射危险的种子。 碰到敌人会绽开并爆炸。| 74 | |缠绕地刺|`RootAttack`|用地下尖锐的根部追击敌人 并从脚下贯穿敌人。| 75 | |三重风刃|`SpecialCutter`|瞄准敌人发射 3发直线飞行的超高速风刃。| 76 | |回旋杖击|`Unique_QueenBee_SpinLance`|女皇蜂的专用技能。 以法杖聚集力量后,再旋转法杖来释放能量。| 77 | |广域雷击|`ThunderRain`|召唤雷电 在一定时间后生成大量落电。| 78 | |闪电球|`ThunderBall`|发射雷电球 并缓慢追击敌人。| 79 | |雷击|`LineThunder`|生成可笔直前进的雷击。| 80 | |十字雷击|`CrossThunder`|堵住敌人的左右两侧 生成可向两个方向前进的雷击。| 81 | |三重雷击|`ThreeThunder`|在敌人头上生成3次落雷。| 82 | |冲击波|`ElecWave`|快速放电 给周围造成冲击。| 83 | |闪电伏特|`Thunderbolt`|积蓄雷电之力 瞄准敌人释放强劲电击。| 84 | |等离子浮游砲|`ThunderFunnel`|生成两个蕴含雷电能量的球 然后瞄准敌人,从中发射无数雷球。| 85 | |电火花|`SpreadPulse`|向前方发射呈扇形扩散的雷电球。| 86 | |锁定雷射|`LockonLaser`|瞄准敌人后 发射超高速的雷电激光。| 87 | |闪电冲击|`LightningStrike`|让自己化作避雷针引来雷电, 并在原地引发闪电爆炸。| 88 | |霹雳连爪|`Unique_ElecPanda_ElecScratch`|暴电熊的专用技能。 飞扑向敌人,并用带电流的爪子将其劈开。 飞扑2次后,面向地面伸出爪子, 大范围扩散电流。| 89 | |疾风雷击|`Unique_Kirin_LightningTackle`|雷角马的专用技能。 在自己的周围降下落雷, 同时猛力冲向敌人。| 90 | |冰雪飞弹|`IceMissile`|在上空生成尖锐的冰柱 瞄准敌人后发射冰柱。| 91 | |冰刺|`BlizzardLance`|在敌人的脚边 生成尖锐的冰刃。| 92 | |暴风雪|`SnowStorm`|将冰冻之力聚集四周 攻击附近的敌人后 瞄准敌人释放暴风雪。| 93 | |钻石星辰|`IcicleThrow`|生成巨大的冰块 瞄准敌人后高速发射。 中弹时,可同时给周围造成冲击。| 94 | |冰晶之翼|`Unique_IceHorse_IceBladeAttack`|唤冬兽及亚种的专用技能。 凝结冷空气,让翅膀覆上冰晶, 并在全力奔跑的同时以冰翼撕裂敌人。| 95 | |冰刃|`IceBlade`|制造出新月型的冰刃, 将之射向前方。| 96 | |沙尘旋风|`SandTornado`|在左右两侧生成砂砾龙卷风, 并扇向敌人。| 97 | |投石|`ThrowRock`|将岩石从眼前的地上吸附起来 瞄准敌人并发射。| 98 | |岩石锐矛|`RockLance`|在敌人的脚边 生成尖锐的岩石长矛。| 99 | |泥浆投掷|`MudShot`|用黏糊糊的泥巴 瞄准敌人并发射。| 100 | |碎石霰弹|`StoneShotgun`|向前方射出大量的小石头碎屑。| 101 | |甲壳回旋|`Unique_DrillGame_ShellAttack`|碎岩龟的专用技能。 以全身高速旋转的方式移动, 并以钻头刨削敌人,持续对目标造成伤害。| 102 | |暗黑雷射|`DarkLaser`|积蓄黑暗之力 瞄准敌人发射强劲光线。| 103 | |暗影波动|`DarkWave`|快速释放黑暗之力 给周围造成冲击。| 104 | |恶梦球|`ShadowBall`|生成巨大的黑暗之球 瞄准敌人并高速发射。| 105 | |念动引力|`Psychokinesis`|用念力剥夺周围敌人的行动自由 并将其从高处锤入地面。| 106 | |剧毒射击|`PoisonShot`|用蕴藏剧毒之力的淤泥 瞄准敌人并发射。| 107 | |鬼火|`GhostFlame`|发射3个怨念 并执着追击敌人。| 108 | |幻影突袭|`Unique_DarkCrow_TelePoke`|黑鸦隐士的专用技能。 瞬间移动至敌人身旁, 再以鸟喙发动攻击。| 109 | |龙彗星|`DragonMeteor`|召唤大量小陨石 瞄准敌人并发射。| 110 | |龙息|`DragonBreath`|向前方呼出蕴含龙之力的气息 ,持续对目标造成伤害。| 111 | |龙之波动|`DragonWave`|快速释放龙之力 给周围造成冲击。| 112 | |龙息弹|`DragonCanon`|用蕴藏龙之力的能量弹 瞄准敌人并发射。| 113 | |神秘旋风|`Unique_FairyDragon_FairyTornado`|精灵龙及亚种的专用技能。 发射2股蕴含不可思议能力的龙卷风, 追击敌人。| 114 | ||`Funnel_DreamDemon`|| 115 | ||`Funnel_RaijinDaughter`|| 116 | ||`StardustArrow`|| 117 | |岩爆|`Tremor`|撼动地面, 使大块岩石射向四面八方。| 118 | |凛冬之息|`FrostBreath`|朝敌人喷出冰冷空气, 持续对目标造成伤害。| 119 | |晶钻之雨|`DiamondFall`|在敌人头顶生无数个冰块, 随后接连落下攻击目标。| 120 | |切割龙息|`BeamSlicer`|用龙属性的射线一扫前方。 被扫过地方将产生延迟爆炸。| 121 | |陨星|`Commet`|召唤陨石垂直落下, 并在撞击点产生冲击波。| 122 | |暗黑球|`DarkBall`|发射以缓慢速度追击敌人的黑暗之球。| 123 | ||`DarkFog`|| 124 | |毒雾|`PoisonFog`|于前方制造毒雾, 使目标陷入中毒状态。| 125 | |黑暗之拥|`DarkLegion`|发射多个可以追击敌人的黑暗之球。| 126 | |黑暗弹|`DarkCanon`|将带有黑暗力量的高速能量弹射向敌人。| 127 | |黑暗箭|`DarkArrow`|使用暗之力连续发射数支高速箭追击敌人。| 128 | |黑暗霰射|`DarkPulse`|向前方发射呈扇形扩散的高速暗黑球。| 129 | |启示录|`Apocalypse`|于敌人周围生成数个暗黑龙卷风。| 130 | |诡雷繁星|`StarMine`|在敌人周围生成一碰就爆炸的星星。 星星在经过一定时间后,没有触碰也会爆炸。| 131 | |真空刃|`AirBlade`|扇形发射锋利的气刃。| 132 | |光击阵|`HolyBlast`|在敌人脚下和四周引发大范围的光柱爆炸。| 133 | |缠根牢狱|`RootLance`|在敌人的位置和其周围刺出尖锐的根刺。| 134 | ||`LeafWind`|| 135 | ||`SeedBurst`|| 136 | |瀑流击|`LineGeyser`|召唤一束直线前进的水柱。| 137 | |间隙潮|`WallSplash`|连续在敌人的脚下生成水柱结成的墙壁。| 138 | |三相火花|`TriSpark`|同时发射直线飞行的高速雷球, 和追踪敌人的慢速雷球。| 139 | |雷霆飓风|`ThunderStorm`|召唤巨大的雷属性龙卷风。 龙卷风将追踪敌人缓慢移动。| 140 | |沙尘暴|`SandTwister`|生成复数个砂龙卷。 龙卷风们将一边自旋一边绕中心旋转。| 141 | |冰锋之路|`IcicleLine`|召唤朝前方三个方向推进的冰柱。| 142 | ||`FrostBeam`|| 143 | ||`BlizzardFlower`|| 144 | |三重陨星|`ThreeCommet`|召唤陨石接连落下, 并在撞击点产生冲击波。| 145 | |陨星雨|`CommetRain`|召唤无数陨石落下, 并在撞击点产生冲击波。| 146 | |绽裂龙息|`BlastCanon`|向敌人的位置发射充满龙属性的能量弹。 能量弹在着弹时将向周围扩散,在前方广范围引发爆炸。| 147 | |龙息炮|`ChargeCanon`|向敌人发射积蓄着龙属性力量的能量弹。 能量弹在着弹时将引发大范围爆炸。| 148 | |雷动八方|`RangeThunder`|向八个方向召唤直线推进的雷击。| 149 | |并联雷光|`Railbolt`|积蓄雷电的力量到极限, 朝敌人同时发射多道强力雷击。| 150 | |处刑雷射|`ShokeiLaser`|锁定敌人后,连续射出超高速的雷射。| 151 | |毒雨|`BubbleShower`|使出浑身力量 向各个方向喷洒毒球。| 152 | ||`WaterBalloon`|| 153 | |混沌射线|`ChaosLaser`|蓄积混沌之力,同时向敌人发射光明与黑暗的光束。| 154 | |冰霜连弹|`IciclePierce`|在空中生成复数个冰锥, 瞄准敌人一齐射出。| 155 | |极寒双星|`DoubleIcicleThrow`|做出两个巨大的冰块, 瞄准敌人先后发射。 撞击后对周围造成冲击。| 156 | |冰极冻域|`IceAge`|大范围的在敌人脚下生成冰柱穿刺。| 157 | |连环风刃|`RaidCutter`|瞄准敌人射出无数风刃。| 158 | |烈风切|`WindEdge`|扇形射出锐利的风刃。| 159 | ||`GrassTyphoon`|| 160 | ||`SeedShotgun`|| 161 | |炎龙舞|`FlareTwister`|制造多个火焰龙卷风。 龙卷风继续盘旋。| 162 | ||`TripleCannon`|| 163 | ||`TrisRing`|| 164 | |炽焰掠空|`Unique_BirdDragon_FireBreath`|烽歌龙的专用技能。 一边从口部喷出火焰一边前进。| 165 | |魔龙焚炎|`Unique_BlackMetalDragon_FirePunch`|魔渊龙的专用技能。 在向前方挥出两拳后, 向下呼出龙属性的吐息。| 166 | |跳跃重刺|`Unique_DarkScorpion_Pierce`|冥铠蝎及亚种的专用技能。 高高跃起,用尾巴狠狠地将猎物刺穿。 尾部含有毒素。| 167 | |心灵冲刺|`Unique_GhostBeast_Tossin`|噬魂兽的专用技能。 缓慢奔跑的同时,不断召唤摇曳的火球飞向敌人。| 168 | |光束彗星|`Unique_JetDragon_JumpBeam`|空涡龙的专用技能。 展开发光的翅膀, 并发射大量光束朝敌人飞去。 光束命中目标便会引发爆炸。| 169 | |闪电俯冲|`Unique_ThunderBird_ThunderStorm`|迅雷鸟的专用技能。 先在敌人所在位置降下落雷。 然后在空中突进的同时,于左右两侧召唤落雷。| 170 | |滚雪球|`Unique_Yeti_SnowBall`|白绒雪怪的专用技能。 一边向前方突进一边滚动雪球, 在雪球滚的足够大时投掷出去,使其炸裂。| 171 | |喵咪扑击|`Unique_NaughtyCat_CatPress`|笑魇猫的专用技能。 带着无所畏惧的笑容跳起, 再用全身的力量辗压敌人。| 172 | |霜角猛攻|`Unique_IceDeer_IceHorn`|严冬鹿的专用技能。 向前冲刺并以雄伟的冰角刺穿敌人。| 173 | |龙陨震击|`Unique_KingBahamut_AirCrash`|殁殃的专用技能。 高高跃上空中后,边在空中高速移动,边积蓄力量。 然后打出全力一击。| 174 | |火山獠牙|`Unique_Manticore_InfernoStrike`|狱焰王及亚种的专用技能。 毫不留情的气势汹汹扑向敌人, 在扑击的地点引发火属性的爆炸。| 175 | |针刺长矛|`Unique_SoldierBee_NeedleLance`|骑士蜂的专用技能。 朝向敌人高速突刺。 最后使出致命一击贯穿敌人。| 176 | |召雷|`Unique_ThunderDog_InazumaShorai`|霹雳犬的专用技能。 在前方呼唤连续不断的雷击, 在落下的雷电间高速突进。| 177 | |双枪一闪|`Unique_BlackCentaur_TwoSpearRushes`|混沌骑士的专用技能。 以旋风包覆双手的长枪后, 朝前方冲刺并左右交替刺击。| 178 | |神圣灾祸|`Unique_BlackGriffon_TackleLaser`|异构格里芬的专用技能。 在向前猛冲的同时制造出光球。 光球会自动捕捉敌人,并射出大量激光。| 179 | |铁山靠|`Unique_SakuraSaurus_SideTackle`|连理龙及亚种的专用技能。 侧身站立, 然后向前猛撞敌人,并将其击飞。| 180 | |雷神之枪|`Unique_ThunderDragonMan_ThunderSwordAttack`|波鲁杰克斯的专用技能。 向上跳起后召唤雷枪, 将之丢向敌人。| 181 | |燧火连击|`Unique_RedArmorBird_TriplePeck`|燧火鸟的专用技能。 飞向前方的同时,朝正前、右、左啄击, 并通过点火引发小规模的爆炸。| 182 | |王者滑击|`Unique_CaptainPenguin_BodySlide`|企丸王的专用技能。 全身散发寒气,并采用腹部着地之姿滑行, 往敌人的方向用力撞去。| 183 | |居合斩|`Unique_Ronin_Iai`|浪刃武士的专用技能。 摆出迎战姿势后瞬间移动至敌人面前, 并使出超高速的拔刀攻击。| 184 | |回旋猛踢|`Unique_GrassRabbitMan_GrassRoundKick`|踏春兔的专用技能。 向前方跳起的同时高速回旋踢击, 将周围一扫而净。| 185 | |闪枪冲锋|`Unique_SaintCentaur_OneSpearRushes`|圣光骑士的专用技能。 让神圣的力量覆满自身, 并以左手持长枪向前冲锋。 右手的盾牌在冲锋时能挡下所有攻击。| 186 | |断海覆潮|`Unique_Umihebi_WindingTackle`|覆海龙的专用技能。 起身咆哮,使用身缠浪涛的巨大身躯蛇形向敌人突进。| 187 | |火箭冲撞|`Unique_WeaselDragon_FlyingTackle`|疾旋鼬及亚种的专用技能。 短时间蓄力后,向前跃起。 在着地时因为害怕一直都是紧闭着眼睛。| 188 | |暴雪爪|`Unique_WhiteTiger_IceScratch`|冰棘兽的专用技能。 在两次挥击后,使出浑身力气大幅挥动巨爪。 每次挥动巨爪时,都会向前方扇形区域飞出冰柱。| 189 | ||`Unique_Baphomet_Dark_DarkKite`|| 190 | |寒霜掠空|`Unique_BirdDragon_Ice_IceBreath`|霜歌龙的专用技能。 一边从口部呼出冷气一边前进。| 191 | |暗焰冲撞|`Unique_FireKirin_Dark_DarkTossin`|邪麒麟的专用技能。 带着缠绕全身的暗黑火焰向前猛冲。 途经之处均会留下滚滚火焰。| 192 | |霜冻爆裂|`Unique_VolcanicMonster_Ice_IceAttack`|寒霜兽的专用技能。 举起前脚猛击地面, 使冰雪于敌人所在处喷发。 喷发时四周更会有雪球倾泻而下。| 193 | ||`Unique_IceHorse_Dark_DarkBladeAttack`|| 194 | |滚草球|`Unique_Yeti_Grass_GrassBall`|绿苔绒怪的专用技能。 一边向前方突进一边滚动草球, 在草球滚的足够大时投掷出去,使其炸裂。| 195 | |爆裂拳击|`Unique_GrassPanda_Electric_ElectricPunch`|雷胖达的专用技能。 不停转动右臂,向前方挥出带电拳击。| 196 | |噩梦绽放|`Unique_NightLady_WarpBeam`|贝菈露洁的专用技能。 趁敌人不注意时隐去身影,并在现身的瞬间射出无数光线, 且光线会犹如绽放的花朵般扩散。| 197 | |噩梦射线|`Unique_NightLady_WarpBeam_Straight`|贝菈诺娃的专用技能。 趁敌人不注意时隐去身影,并在再次现身的瞬间射出无数光线。| 198 | |烈焰华尔兹|`Unique_NightLady_FlameNightmare`|贝菈露洁的专用技能。 在摇曳起舞的同时製造一圈圈火焰, 使之向周围扩散, 并发射妖异的火球来追击敌人。| 199 | |皎月射线|`Unique_MoonQueen_MoonBeam`|辉月伊的专用技能。 将能量积蓄于背后的月亮, 然后向前方发出新月形的射线。| 200 | |青月刃|`Unique_MoonQueen_MoonBlade`|辉月伊的专用技能。 挥出蕴含月光力量的高速二连斩击。| 201 | |焚天爆炎|`Unique_KingBahamut_ArmSmash`|焰煌及亚种的专用技能。 伸展开手臂,使肌肉剧烈膨胀后, 猛地拍击在一起引发巨大爆炸。| 202 | |回旋岩锯|`Unique_WingGolem_RoundCutter`|泰锋的专用技能。 大幅回旋身体投掷出背后的岩盘。 岩盘将会以圆弧轨道状飞行。| 203 | |升虫拳|`Unique_ScorpionMan_Uppercut`|蛊刺妖的专用技能。 快速缩短和敌人的距离, 狠狠的用钳子使出上勾拳。| 204 | |地之冲锋|`Unique_FeatherOstrich_Tossin`|战冠雀的专用技能。 一口气提高速度,向前方突进。| 205 | |恶之爪|`Unique_DarkAlien_JumpScractch`|杰诺贝达的专用技能。 灵活的跃起,用左手撕裂敌人。| 206 | |气合返|`Unique_SifuDog_Counter`|汪宗师的专用技能。 摆出合气道的架势,在架势中受到的攻击将无效化, 同时一瞬间迫近敌人,使出全身力量掌击。| 207 | |雷神之怒|`Unique_ThunderDragonMan_NumerousSwordAttack`|波鲁杰克斯的专用技能。 召唤数把雷枪,向敌人投掷而出,并引发爆炸。| 208 | |雷击的重型战车|`Unique_ElecPanda_GatlingAttack`|暴电熊的专用技能。 不知从哪取出加特林机枪进行扫射。 最后一发将射出强力的充能弹。| 209 | |丰饶加护|`Unique_LilyQueen_LilyHealing`|百合女王的专用技能。 使用治愈的力量恢复自身的HP。 并不会帮玩家恢复生命值。| 210 | |风之结界|`Unique_LilyQueen_WindBarrier`|百合女王的专用技能。 用风障将自己包围起来,并将风刃返回给攻击的对手。| 211 | |炎凰烈波|`Unique_Horus_PerfectStorm`|荷鲁斯的专用技能。 卷起数个灼热的龙卷风, 同时身缠烈焰,飞空向敌人突进。 龙卷风最终将融合为巨大火龙卷。| 212 | |神圣灾祸Ⅱ|`Unique_BlackGriffon_TackleLaser2`|异构格里芬的专用技能。 一边突进,一边从身体的圆环出射出无数的蓝色光束。 光束会自动追踪敌人。| 213 | |青月闪|`Unique_MoonQueen_IceMoonBlade`|辉月伊的专用技能。 挥出蕴含月光力量的高速三连斩击。| 214 | |唤星|`Unique_DarkMechaDragon_SetFunnel`|杰诺多兰的专用技能。 召唤4个有自动攻击能力的卫星型羽毛。 羽毛在进行攻击时会自动追踪敌人。| 215 | |欧米伽雷射|`Unique_DarkMechaDragon_FunnelLaser`|杰诺多兰的专用技能。 从亚空间呼唤毁灭的光束不断进行横向垂直扫射, 将视野范围内的一切燃烧殆尽。| 216 | |星幽炮|`Unique_DarkMechaDragon_ConvergentBeam`|杰诺多兰的专用技能。 集中充盈暗黑力量的能量, 一口气以直线状放出。| 217 | |光连斩|`Unique_DarkMechaDragon_BeamSlash`|杰诺多兰的专用技能。 在右手生成高功率的光剑, 高速移动同时进行二连斩击。| 218 | |苍穹落星|`Unique_DarkMechaDragon_WarpComet`|杰诺多兰的专用技能。 以光速飞上高空,射出无数的流星弹。 之后将自身化为彗星向地面突进, 在撞击的地点引发大范围的爆炸。| 219 | |腾龙奔炎|`Unique_Umihebi_Fire_FireWindingTackle`|腾炎龙的专用技能。 起身咆哮,使用身缠炽炎的巨大身躯蛇形向敌人突进。| 220 | |碎岩爪|`Unique_WhiteTiger_Ground_IronScratch`|金棘兽的专用技能。 在两次挥击后,使出浑身力气大幅挥动巨爪。 每次挥动巨爪时,都会向前方扇形区域飞出碎岩。| 221 | |雷云之岚|`Unique_FengyunDeeper_Electric_ThunderTempest`|雷隐鹿的专用技能。 操控大气,身缠雷云向前猛冲。| 222 | |吹雪爪击|`Unique_Werewolf_Ice_SnowScratch`|霜镰魔的专用技能。 向前一跃,迅速斩下两击。 且每次斩击都充满了冰属性的力量。| 223 | |凤凰浪涛|`Unique_Horus_Water_AquaStorm`|伊西斯的专用技能。 扇起漩涡龙卷风后, 化身为波涛,一边滑翔一边突袭敌人。| 224 | |火阴山雷|`Unique_AmaterasuWolf_Dark_DarkCharge`|幽焰狼的专用技能。 带着缠绕全身的紫色火焰,气势汹汹地向前猛冲。| 225 | |震岩|`RockBeat`|震动地面, 并令巨大的岩石飞起。| 226 | |冰川碎击|`Unique_SnowTigerBeastman_SnowImpact`|霜牙王的专用技能。 大声咆哮的同时高高跳起, 落地后将双臂埋入地面,产生巨大的龟裂冰川。 之后不断向地面积蓄力量,最终引发巨大的冰属性爆炸。| 227 | |蜘蛛猛袭|`Unique_PurpleSpider_SpiderRaid`|桃蛛娘的专用技能。 吐出丝线缠绕住猎物。 之后全速冲向猎物所在位置, 打出三段攻击以使其毙命。| 228 | |烈冻爪|`Unique_SnowTigerBeastman_TrampleSlash`|霜牙王的专用技能。 踩踏地面,在前方产生断裂的冰川。 之后一口气接近敌人,用右手将其撕裂。| 229 | |窃魂|`Unique_MysteryMask_LifeSteal`|面惧的专用技能。 突然出现在敌人附近并用双手将其束缚, 并吸收受到束缚敌人的HP。| 230 | |怨念连击|`Unique_GrimGirl_BrutalMachete`|幽恋娜的专用技能。 从原先位置瞬间移动的同时打出斩击。 然后瞬移至目标头顶, 用利刃刺穿猎物并产生暗属性能量波。| 231 | |圣盾冲锋|`Unique_WhiteShieldDragon_ShieldTackle`|艾基鲁迦的专用技能。 在前方展开能够减轻各种伤害的能量盾的同时, 将突进道路上的敌人碾碎。| 232 | |风驰电掣|`Unique_BlueThunderHorse_FlashDash`|驭雷马的专用技能。 以闪电般的速度移动, 并将途径的所有存在都卷入。| 233 | |神圣新星|`Unique_WhiteDeer_HolyPillar`|净世鹿的专用技能。 在前方引发大范围的圣光爆炸后, 边缓慢行走边在自身周围降下神圣之光。| 234 | |致命舞步|`Unique_NightBlueHorse_DeathStep`|夜冥驹的专用技能。 用鬼魅般的步伐玩弄敌人, 同时用锐利的角挥出斩击。| 235 | |碎岩冲锋|`Unique_GoldenHorse_StoneDash`|金驰兽的专用技能。 在气势汹汹突进的同时,令碎岩向左右飞溅。| 236 | |捕食者激波|`PredatorWave`|| 237 | |捕食者光束|`PredatorBeam`|| 238 | |捕食者锁定雷射|`PredatorLockon`|| 239 | -------------------------------------------------------------------------------- /Wiki/Data Lists/Items.md: -------------------------------------------------------------------------------- 1 | ### [<<<](README.md) Data Lists 2 | 3 | # Items 4 | List of item names in Palworld with the asset name. 5 | 6 | Updated for game version `v0.4.14` 7 | 8 | |Name|Asset Name| 9 | |----|-------| 10 | |Cold Resistant Plasteel Armor +2|`PlasticArmorCold_3`| 11 | |Cold Resistant Plasteel Armor +3|`PlasticArmorCold_4`| 12 | |Cold Resistant Plasteel Armor +4|`PlasticArmorCold_5`| 13 | |Lightweight Plasteel Armor +1|`PlasticArmorWeight_2`| 14 | |Lightweight Plasteel Armor +2|`PlasticArmorWeight_3`| 15 | |Lightweight Plasteel Armor +3|`PlasticArmorWeight_4`| 16 | |Lightweight Plasteel Armor +4|`PlasticArmorWeight_5`| 17 | |Plasteel Helmet +1|`PlasticHelmet_2`| 18 | |Plasteel Helmet +2|`PlasticHelmet_3`| 19 | |Plasteel Helmet +3|`PlasticHelmet_4`| 20 | |Plasteel Helmet +4|`PlasticHelmet_5`| 21 | |Leezpunk Hood +1|`HeadEquip025_2`| 22 | |Leezpunk Hood +2|`HeadEquip025_3`| 23 | |Leezpunk Hood +3|`HeadEquip025_4`| 24 | |Leezpunk Hood +4|`HeadEquip025_5`| 25 | |Killamari Cap +1|`HeadEquip026_2`| 26 | |Killamari Cap +2|`HeadEquip026_3`| 27 | |Killamari Cap +3|`HeadEquip026_4`| 28 | |Killamari Cap +4|`HeadEquip026_5`| 29 | |Ribbuny Headband +1|`HeadEquip028_2`| 30 | |Ribbuny Headband +2|`HeadEquip028_3`| 31 | |Ribbuny Headband +3|`HeadEquip028_4`| 32 | |Ribbuny Headband +4|`HeadEquip028_5`| 33 | |Swee Cap +1|`HeadEquip031_2`| 34 | |Swee Cap +2|`HeadEquip031_3`| 35 | |Swee Cap +3|`HeadEquip031_4`| 36 | |Swee Cap +4|`HeadEquip031_5`| 37 | |Dazzi Hat +1|`HeadEquip032_2`| 38 | |Dazzi Hat +2|`HeadEquip032_3`| 39 | |Dazzi Hat +3|`HeadEquip032_4`| 40 | |Dazzi Hat +4|`HeadEquip032_5`| 41 | |Hexolite Armor|`SFArmor`| 42 | |Xenolord's head|`HeadEquip044`| 43 | |Heat Resistant Hexolite Armor|`SFArmorHeat`| 44 | |Cold Resistant Hexolite Armor|`SFArmorCold`| 45 | |Lightweight Hexolite Armor|`SFArmorWeight`| 46 | |Hexolite Helmet|`SFHelmet`| 47 | |Bjorn Hat|`GYM_Head_Viking`| 48 | |Hexolite Helmet +1|`SFHelmet_2`| 49 | |Hexolite Helmet +2|`SFHelmet_3`| 50 | |Hexolite Helmet +3|`SFHelmet_4`| 51 | |Hexolite Helmet +4|`SFHelmet_5`| 52 | |Hexolite Armor +1|`SFArmor_2`| 53 | |Hexolite Armor +2|`SFArmor_3`| 54 | |Hexolite Armor +3|`SFArmor_4`| 55 | |Hexolite Armor +4|`SFArmor_5`| 56 | |Heat Resistant Hexolite Armor +1|`SFArmorHeat_2`| 57 | |Heat Resistant Hexolite Armor +2|`SFArmorHeat_3`| 58 | |Heat Resistant Hexolite Armor +3|`SFArmorHeat_4`| 59 | |Heat Resistant Hexolite Armor +4|`SFArmorHeat_5`| 60 | |Cold Resistant Hexolite Armor +1|`SFArmorCold_2`| 61 | |Cold Resistant Hexolite Armor +2|`SFArmorCold_3`| 62 | |Cold Resistant Hexolite Armor +3|`SFArmorCold_4`| 63 | |Cold Resistant Hexolite Armor +4|`SFArmorCold_5`| 64 | |Lightweight Hexolite Armor +1|`SFArmorWeight_2`| 65 | |Lightweight Hexolite Armor +2|`SFArmorWeight_3`| 66 | |Lightweight Hexolite Armor +3|`SFArmorWeight_4`| 67 | |Lightweight Hexolite Armor +4|`SFArmorWeight_5`| 68 | |Anti-Gravity Belt|`Accessory_JumpPower_Increase`| 69 | |Double Jump Boots|`Accessory_JumpCount_Increase1`| 70 | |Triple Jump Boots|`Accessory_JumpCount_Increase2`| 71 | |Quadruple Jump Boots|`Accessory_JumpCount_Increase3`| 72 | |Air Dash Boots|`Accessory_AirDash1`| 73 | |Double Air Dash Boots|`Accessory_AirDash2`| 74 | |en-Text|`Accessory_AirDash3`| 75 | |en-Text|`Accessory_AirDash4`| 76 | |Advanced Shield|`Shield_SF`| 77 | |Unknown Item (TEST_CaptureItemModifier)|`TEST_CaptureItemModifier`| 78 | |Heavy Weight Module|`SphereModule_Heavy`| 79 | |Curve Module|`SphereModule_Curve`| 80 | |Sniper Module|`SphereModule_Sniper`| 81 | |Slider Module|`SphereModule_Curve2`| 82 | |Sniper Module â…¡|`SphereModule_Sniper2`| 83 | |Homing Module|`SphereModule_Homing`| 84 | |Cloth Outfit|`ClothArmor`| 85 | |Metal Armor|`CopperArmor`| 86 | |Metal Helm|`CopperHelmet`| 87 | |Pelt Armor|`FurArmor`| 88 | |Feathered Hair Band|`FurHelmet`| 89 | |Refined Metal Armor|`IronArmor`| 90 | |Refined Metal Helm|`IronHelmet`| 91 | |Pal Metal Armor|`StealArmor`| 92 | |Pal Metal Helm|`StealHelmet`| 93 | |Normal Parachute|`Glider_Old`| 94 | |Mega Glider|`Glider_Good`| 95 | |Giga Glider|`Glider_Super`| 96 | |Hyper Glider|`Glider_Legendary`| 97 | |Unknown Item (PV_Glider_Manta)|`PV_Glider_Manta`| 98 | |Lightz Helmet|`LightzHelmet`| 99 | |Gas Mask|`GasMask`| 100 | |Night Vision Goggles|`NightVisionGoggles`| 101 | |Common Shield|`Shield_01`| 102 | |Mega Shield +1|`Shield_02`| 103 | |Giga Shield +2|`Shield_03`| 104 | |Hyper Shield +3|`Shield_04`| 105 | |Life Pendant|`Accessory_HP_1`| 106 | |Life Pendant +1|`Accessory_HP_2`| 107 | |Life Pendant +2|`Accessory_HP_3`| 108 | |Attack Pendant|`Accessory_AT_1`| 109 | |Attack Pendant +1|`Accessory_AT_2`| 110 | |Attack Pendant +2|`Accessory_AT_3`| 111 | |Defense Pendant|`Accessory_defense_1`| 112 | |Defense Pendant +1|`Accessory_defense_2`| 113 | |Defense Pendant +2|`Accessory_defense_3`| 114 | |Pendant of Diligence|`Accessory_WorkSpeed_1`| 115 | |Pendant of Diligence +1|`Accessory_WorkSpeed_2`| 116 | |Pendant of Diligence +2|`Accessory_WorkSpeed_3`| 117 | |Heat Resistant Undershirt|`Accessory_HeatResist_1`| 118 | |Heat Resistant Undershirt +1|`Accessory_HeatResist_2`| 119 | |Heat Resistant Undershirt +2|`Accessory_HeatResist_3`| 120 | |Thermal Undershirt|`Accessory_CoolResist_1`| 121 | |Thermal Undershirt +1|`Accessory_CoolResist_2`| 122 | |Thermal Undershirt +2|`Accessory_CoolResist_3`| 123 | |Ring of Neutral Resistance|`Accessory_NormalResist_1`| 124 | |Ring of Neutral Resistance +1|`Accessory_NormalResist_2`| 125 | |Ring of Neutral Resistance +2|`Accessory_NormalResist_3`| 126 | |Ring of Fire Resistance|`Accessory_FireResist_1`| 127 | |Ring of Fire Resistance +1|`Accessory_FireResist_2`| 128 | |Ring of Fire Resistance +2|`Accessory_FireResist_3`| 129 | |Ring of Water Resistance|`Accessory_AquaResist_1`| 130 | |Ring of Water Resistance +1|`Accessory_AquaResist_2`| 131 | |Ring of Water Resistance +2|`Accessory_AquaResist_3`| 132 | |Ring of Lightning Resistance|`Accessory_ThunderResist_1`| 133 | |Ring of Lightning Resistance +1|`Accessory_ThunderResist_2`| 134 | |Ring of Lightning Resistance +2|`Accessory_ThunderResist_3`| 135 | |Ring of Grass Resistance|`Accessory_LeafResist_1`| 136 | |Ring of Grass Resistance +1|`Accessory_LeafResist_2`| 137 | |Ring of Grass Resistance +2|`Accessory_LeafResist_3`| 138 | |Ring of Ice Resistance|`Accessory_IceResist_1`| 139 | |Ring of Ice Resistance +1|`Accessory_IceResist_2`| 140 | |Ring of Ice Resistance +2|`Accessory_IceResist_3`| 141 | |Ring of Earth Resistance|`Accessory_EarthResist_1`| 142 | |Ring of Earth Resistance +1|`Accessory_EarthResist_2`| 143 | |Ring of Earth Resistance +2|`Accessory_EarthResist_3`| 144 | |Ring of Dark Resistance|`Accessory_DarkResist_1`| 145 | |Ring of Dark Resistance +1|`Accessory_DarkResist_2`| 146 | |Ring of Dark Resistance +2|`Accessory_DarkResist_3`| 147 | |Ring of Dragon Resistance|`Accessory_DragonResist_1`| 148 | |Ring of Dragon Resistance +1|`Accessory_DragonResist_2`| 149 | |Ring of Dragon Resistance +2|`Accessory_DragonResist_3`| 150 | |Monarch's Crown|`Head001`| 151 | |Monarch's Crown +1|`Head001_2`| 152 | |Monarch's Crown +2|`Head001_3`| 153 | |Monarch's Crown +3|`Head001_4`| 154 | |Monarch's Crown +4|`Head001_5`| 155 | |Golden Crown|`Head002`| 156 | |Golden Crown +1|`Head002_2`| 157 | |Golden Crown +2|`Head002_3`| 158 | |Golden Crown +3|`Head002_4`| 159 | |Golden Crown +4|`Head002_5`| 160 | |Long-Eared Headband|`Head003`| 161 | |Long-Eared Headband +1|`Head003_2`| 162 | |Long-Eared Headband +2|`Head003_3`| 163 | |Long-Eared Headband +3|`Head003_4`| 164 | |Long-Eared Headband +4|`Head003_5`| 165 | |Witch Hat|`Head004`| 166 | |Witch Hat +1|`Head004_2`| 167 | |Witch Hat +2|`Head004_3`| 168 | |Witch Hat +3|`Head004_4`| 169 | |Witch Hat +4|`Head004_5`| 170 | |Soft Hat|`Head005`| 171 | |Soft Hat +1|`Head005_2`| 172 | |Soft Hat +2|`Head005_3`| 173 | |Soft Hat +3|`Head005_4`| 174 | |Soft Hat +4|`Head005_5`| 175 | |Helmet|`Head006`| 176 | |Helmet +1|`Head006_2`| 177 | |Helmet +2|`Head006_3`| 178 | |Helmet +3|`Head006_4`| 179 | |Helmet +4|`Head006_5`| 180 | |Silk Hat|`Head007`| 181 | |Silk Hat +1|`Head007_2`| 182 | |Silk Hat +2|`Head007_3`| 183 | |Silk Hat +3|`Head007_4`| 184 | |Silk Hat +4|`Head007_5`| 185 | |Tricorne|`Head008`| 186 | |Tricorne +1|`Head008_2`| 187 | |Tricorne +2|`Head008_3`| 188 | |Tricorne +3|`Head008_4`| 189 | |Tricorne +4|`Head008_5`| 190 | |Explorer Cap|`Head009`| 191 | |Explorer Cap +1|`Head009_2`| 192 | |Explorer Cap +2|`Head009_3`| 193 | |Explorer Cap +3|`Head009_4`| 194 | |Explorer Cap +4|`Head009_5`| 195 | |Graduation Cap|`Head010`| 196 | |Graduation Cap +1|`Head010_2`| 197 | |Graduation Cap +2|`Head010_3`| 198 | |Graduation Cap +3|`Head010_4`| 199 | |Graduation Cap +4|`Head010_5`| 200 | |Farming Hat|`Head011`| 201 | |Farming Hat +1|`Head011_2`| 202 | |Farming Hat +2|`Head011_3`| 203 | |Farming Hat +3|`Head011_4`| 204 | |Farming Hat +4|`Head011_5`| 205 | |Bowler Hat|`Head012`| 206 | |Bowler Hat +1|`Head012_2`| 207 | |Bowler Hat +2|`Head012_3`| 208 | |Bowler Hat +3|`Head012_4`| 209 | |Bowler Hat +4|`Head012_5`| 210 | |Tocotoco Cap|`Head013`| 211 | |Tocotoco Cap +1|`Head013_2`| 212 | |Tocotoco Cap +2|`Head013_3`| 213 | |Tocotoco Cap +3|`Head013_4`| 214 | |Tocotoco Cap +4|`Head013_5`| 215 | |Grinning Tocotoco Cap|`Head014`| 216 | |Grinning Tocotoco Cap +1|`Head014_2`| 217 | |Grinning Tocotoco Cap +2|`Head014_3`| 218 | |Grinning Tocotoco Cap +3|`Head014_4`| 219 | |Grinning Tocotoco Cap +4|`Head014_5`| 220 | |Gumoss Cap|`Head015`| 221 | |Gumoss Cap +1|`Head015_2`| 222 | |Gumoss Cap +2|`Head015_3`| 223 | |Gumoss Cap +3|`Head015_4`| 224 | |Gumoss Cap +4|`Head015_5`| 225 | |Penking Cap|`Head016`| 226 | |Penking Cap +1|`Head016_2`| 227 | |Penking Cap +2|`Head016_3`| 228 | |Penking Cap +3|`Head016_4`| 229 | |Penking Cap +4|`Head016_5`| 230 | |Katress Cap|`Head017`| 231 | |Katress Cap +1|`Head017_2`| 232 | |Katress Cap +2|`Head017_3`| 233 | |Katress Cap +3|`Head017_4`| 234 | |Katress Cap +4|`Head017_5`| 235 | |Cloth Outfit +1|`ClothArmor_2`| 236 | |Cloth Outfit +2|`ClothArmor_3`| 237 | |Cloth Outfit +3|`ClothArmor_4`| 238 | |Cloth Outfit +4|`ClothArmor_5`| 239 | |Pelt Armor +1|`FurArmor_2`| 240 | |Pelt Armor +2|`FurArmor_3`| 241 | |Pelt Armor +3|`FurArmor_4`| 242 | |Pelt Armor +4|`FurArmor_5`| 243 | |Metal Armor +1|`CopperArmor_2`| 244 | |Metal Armor +2|`CopperArmor_3`| 245 | |Metal Armor +3|`CopperArmor_4`| 246 | |Metal Armor +4|`CopperArmor_5`| 247 | |Refined Metal Armor +1|`IronArmor_2`| 248 | |Refined Metal Armor +2|`IronArmor_3`| 249 | |Refined Metal Armor +3|`IronArmor_4`| 250 | |Refined Metal Armor +4|`IronArmor_5`| 251 | |Pal Metal Armor +1|`StealArmor_2`| 252 | |Pal Metal Armor +2|`StealArmor_3`| 253 | |Pal Metal Armor +3|`StealArmor_4`| 254 | |Pal Metal Armor +4|`StealArmor_5`| 255 | |Feathered Hair Band +1|`FurHelmet_2`| 256 | |Feathered Hair Band +2|`FurHelmet_3`| 257 | |Feathered Hair Band +3|`FurHelmet_4`| 258 | |Feathered Hair Band +4|`FurHelmet_5`| 259 | |Metal Helm +1|`CopperHelmet_2`| 260 | |Metal Helm +2|`CopperHelmet_3`| 261 | |Metal Helm +3|`CopperHelmet_4`| 262 | |Metal Helm +4|`CopperHelmet_5`| 263 | |Refined Metal Helm +1|`IronHelmet_2`| 264 | |Refined Metal Helm +2|`IronHelmet_3`| 265 | |Refined Metal Helm +3|`IronHelmet_4`| 266 | |Refined Metal Helm +4|`IronHelmet_5`| 267 | |Pal Metal Helm +1|`StealHelmet_2`| 268 | |Pal Metal Helm +2|`StealHelmet_3`| 269 | |Pal Metal Helm +3|`StealHelmet_4`| 270 | |Pal Metal Helm +4|`StealHelmet_5`| 271 | |Tropical Outfit|`ClothArmorHeat`| 272 | |Tropical Outfit +1|`ClothArmorHeat_2`| 273 | |Tropical Outfit +2|`ClothArmorHeat_3`| 274 | |Tropical Outfit +3|`ClothArmorHeat_4`| 275 | |Tropical Outfit +4|`ClothArmorHeat_5`| 276 | |Tundra Outfit|`ClothArmorCold`| 277 | |Tundra Outfit +1|`ClothArmorCold_2`| 278 | |Tundra Outfit +2|`ClothArmorCold_3`| 279 | |Tundra Outfit +3|`ClothArmorCold_4`| 280 | |Tundra Outfit +4|`ClothArmorCold_5`| 281 | |Heat Resistant Pelt Armor|`FurArmorHeat`| 282 | |Heat Resistant Pelt Armor +1|`FurArmorHeat_2`| 283 | |Heat Resistant Pelt Armor +2|`FurArmorHeat_3`| 284 | |Heat Resistant Pelt Armor +3|`FurArmorHeat_4`| 285 | |Heat Resistant Pelt Armor +4|`FurArmorHeat_5`| 286 | |Cold Resistant Pelt Armor|`FurArmorCold`| 287 | |Cold Resistant Pelt Armor +1|`FurArmorCold_2`| 288 | |Cold Resistant Pelt Armor +2|`FurArmorCold_3`| 289 | |Cold Resistant Pelt Armor +3|`FurArmorCold_4`| 290 | |Cold Resistant Pelt Armor +4|`FurArmorCold_5`| 291 | |Heat Resistant Metal Armor|`CopperArmorHeat`| 292 | |Heat Resistant Metal Armor +1|`CopperArmorHeat_2`| 293 | |Heat Resistant Metal Armor +2|`CopperArmorHeat_3`| 294 | |Heat Resistant Metal Armor +3|`CopperArmorHeat_4`| 295 | |Heat Resistant Metal Armor +4|`CopperArmorHeat_5`| 296 | |Cold Resistant Metal Armor|`CopperArmorCold`| 297 | |Cold Resistant Metal Armor +1|`CopperArmorCold_2`| 298 | |Cold Resistant Metal Armor +2|`CopperArmorCold_3`| 299 | |Cold Resistant Metal Armor +3|`CopperArmorCold_4`| 300 | |Cold Resistant Metal Armor +4|`CopperArmorCold_5`| 301 | |Heat Resistant Refined Metal Armor|`IronArmorHeat`| 302 | |Heat Resistant Refined Metal Armor +1|`IronArmorHeat_2`| 303 | |Heat Resistant Refined Metal Armor +2|`IronArmorHeat_3`| 304 | |Heat Resistant Refined Metal Armor +3|`IronArmorHeat_4`| 305 | |Heat Resistant Refined Metal Armor +4|`IronArmorHeat_5`| 306 | |Cold Resistant Refined Metal Armor|`IronArmorCold`| 307 | |Cold Resistant Refined Metal Armor +1|`IronArmorCold_2`| 308 | |Cold Resistant Refined Metal Armor +2|`IronArmorCold_3`| 309 | |Cold Resistant Refined Metal Armor +3|`IronArmorCold_4`| 310 | |Cold Resistant Refined Metal Armor +4|`IronArmorCold_5`| 311 | |Heat Resistant Pal Metal Armor|`StealArmorHeat`| 312 | |Heat Resistant Pal Metal Armor +1|`StealArmorHeat_2`| 313 | |Heat Resistant Pal Metal Armor +2|`StealArmorHeat_3`| 314 | |Heat Resistant Pal Metal Armor +3|`StealArmorHeat_4`| 315 | |Heat Resistant Pal Metal Armor +4|`StealArmorHeat_5`| 316 | |Cold Resistant Pal Metal Armor|`StealArmorCold`| 317 | |Cold Resistant Pal Metal Armor +1|`StealArmorCold_2`| 318 | |Cold Resistant Pal Metal Armor +2|`StealArmorCold_3`| 319 | |Cold Resistant Pal Metal Armor +3|`StealArmorCold_4`| 320 | |Cold Resistant Pal Metal Armor +4|`StealArmorCold_5`| 321 | |Lyleen Floral Cap|`HeadEquip023`| 322 | |Sibelyx Hat|`HeadEquip024`| 323 | |Leezpunk Hood|`HeadEquip025`| 324 | |Killamari Cap|`HeadEquip026`| 325 | |Cawgnito Hat|`HeadEquip027`| 326 | |Ribbuny Headband|`HeadEquip028`| 327 | |Lamball Helm|`HeadEquip029`| 328 | |Dumud Helm|`HeadEquip030`| 329 | |Swee Cap|`HeadEquip031`| 330 | |Dazzi Hat|`HeadEquip032`| 331 | |Cattiva Hat|`HeadEquip033`| 332 | |Ring of Mercy|`Accessory_Nonkilling`| 333 | |Ability Glasses|`Accessory_TalentChecker`| 334 | |Plasteel Armor|`PlasticArmor`| 335 | |Plasteel Helmet|`PlasticHelmet`| 336 | |Hyper Glider|`Glider_Tera`| 337 | |Ultra Shield|`Shield_Ultra`| 338 | |Multiclimate Undershirt|`Accessory_HeatColdResist_1`| 339 | |Multiclimate Undershirt +1|`Accessory_HeatColdResist_2`| 340 | |Multiclimate Undershirt +2|`Accessory_HeatColdResist_3`| 341 | |Witch's Crown (Ultra)|`HeadEquip001_purple`| 342 | |Ring of Freight|`Accessory_MaxWeightUp_01`| 343 | |Ring of Freight +1|`Accessory_MaxWeightUp_02`| 344 | |Ring of Freight +2|`Accessory_MaxWeightUp_03`| 345 | |Zoe Hat|`GYM_Head_Grass`| 346 | |Axel Hat|`GYM_Head_Electric`| 347 | |Lily Hat|`GYM_Head_Forest`| 348 | |Victor Hat|`GYM_Head_Snow`| 349 | |Marcus Hat|`GYM_Head_Desert`| 350 | |Horns of Supremacy|`HeadEquip041`| 351 | |Heat Resistant Plasteel Armor|`PlasticArmorHeat`| 352 | |Cold Resistant Plasteel Armor|`PlasticArmorCold`| 353 | |Lightweight Plasteel Armor|`PlasticArmorWeight`| 354 | |Saya Hat|`GYM_Head_Sakurajima`| 355 | |Plasteel Armor +1|`PlasticArmor_2`| 356 | |Plasteel Armor +2|`PlasticArmor_3`| 357 | |Plasteel Armor +3|`PlasticArmor_4`| 358 | |Plasteel Armor +4|`PlasticArmor_5`| 359 | |Heat Resistant Plasteel Armor +1|`PlasticArmorHeat_2`| 360 | |Heat Resistant Plasteel Armor +2|`PlasticArmorHeat_3`| 361 | |Heat Resistant Plasteel Armor +3|`PlasticArmorHeat_4`| 362 | |Heat Resistant Plasteel Armor +4|`PlasticArmorHeat_5`| 363 | |Cold Resistant Plasteel Armor +1|`PlasticArmorCold_2`| 364 | |Red Berries|`Berries`| 365 | |Baked Berries|`Baked_Berries`| 366 | |Grilled Meat|`GrilledMeat`| 367 | |Low Grade Medical Supplies|`Herbs`| 368 | |Medical Supplies|`Medicines`| 369 | |High Grade Medical Supplies|`LuxuryMedicines`| 370 | |Mind Control Meds|`MindControlDrug`| 371 | |Beautiful Flower|`Poppy`| 372 | |Suspicious Juice|`Opium`| 373 | |Strange Juice|`Narcotic`| 374 | |Memory Wiping Medicine|`StatusPointResetSan`| 375 | |Raw Meat|`Meat`| 376 | |Bread|`Pan`| 377 | |Tomato|`Tomato`| 378 | |Wheat|`Wheat`| 379 | |Flour|`Flour`| 380 | |Lettuce|`Lettuce`| 381 | |Grape|`Grape`| 382 | |Hop|`Hop`| 383 | |Egg|`Egg`| 384 | |Milk|`Milk`| 385 | |Hot Milk|`HotMilk`| 386 | |Jam-Filled Bun|`JamBun`| 387 | |Potage|`Potage`| 388 | |Salad|`Salad`| 389 | |Omelet|`Omelet`| 390 | |Stir-Fried Veggies|`FriedVegetables`| 391 | |Hot Dog|`HotDog`| 392 | |Pancake|`Pancake`| 393 | |Marinated Mushrooms|`MarinatedMushrooms`| 394 | |Mushroom Soup|`MushroomSoup`| 395 | |Curry|`Curry_old`| 396 | |Carbonara|`Carbonara`| 397 | |BLT|`BLT`| 398 | |Cheeseburger|`CheeseBurger`| 399 | |Pizza|`Pizza`| 400 | |Bolognese Sauce|`MeatSauce`| 401 | |Cake|`Cake`| 402 | |Mushroom Stew|`MushroomStew`| 403 | |Sandwich|`Sandwich`| 404 | |Corn Soup|`CornSoup`| 405 | |Stew|`Stew`| 406 | |Hamburger|`Hamburger`| 407 | |Grilled Fish|`GrilledFish`| 408 | |Seafood Soup|`SeafoodSoup`| 409 | |Fried Egg|`FriedEggs`| 410 | |LuxuryOmelette|`LuxuryOmelette`| 411 | |Beer|`Beer`| 412 | |Wine|`Wine`| 413 | |Antibiotic_Normal|`Antibiotic_Normal`| 414 | |Antibiotic_Good|`Antibiotic_Good`| 415 | |Antibiotic_Super|`Antibiotic_Super`| 416 | |Common Egg|`PalEgg_Normal_01`| 417 | |Common Egg +1|`PalEgg_Normal_02`| 418 | |Large Common Egg +2|`PalEgg_Normal_03`| 419 | |Large Common Egg +3|`PalEgg_Normal_04`| 420 | |Huge Common Egg +4|`PalEgg_Normal_05`| 421 | |Scorching Egg|`PalEgg_Fire_01`| 422 | |Scorching Egg +1|`PalEgg_Fire_02`| 423 | |Large Scorching Egg +2|`PalEgg_Fire_03`| 424 | |Large Scorching Egg +3|`PalEgg_Fire_04`| 425 | |Huge Scorching Egg +4|`PalEgg_Fire_05`| 426 | |Damp Egg|`PalEgg_Water_01`| 427 | |Damp Egg +1|`PalEgg_Water_02`| 428 | |Large Damp Egg +2|`PalEgg_Water_03`| 429 | |Large Damp Egg +3|`PalEgg_Water_04`| 430 | |Huge Damp Egg +4|`PalEgg_Water_05`| 431 | |Verdant Egg|`PalEgg_Leaf_01`| 432 | |Verdant Egg +1|`PalEgg_Leaf_02`| 433 | |Large Verdant Egg +2|`PalEgg_Leaf_03`| 434 | |Large Verdant Egg +3|`PalEgg_Leaf_04`| 435 | |Huge Verdant Egg +4|`PalEgg_Leaf_05`| 436 | |Electric Egg|`PalEgg_Electricity_01`| 437 | |Electric Egg +1|`PalEgg_Electricity_02`| 438 | |Large Electric Egg +2|`PalEgg_Electricity_03`| 439 | |Large Electric Egg +3|`PalEgg_Electricity_04`| 440 | |Huge Electric Egg +4|`PalEgg_Electricity_05`| 441 | |Frozen Egg|`PalEgg_Ice_01`| 442 | |Frozen Egg +1|`PalEgg_Ice_02`| 443 | |Large Frozen Egg +2|`PalEgg_Ice_03`| 444 | |Large Frozen Egg +3|`PalEgg_Ice_04`| 445 | |Huge Frozen Egg +4|`PalEgg_Ice_05`| 446 | |Rocky Egg|`PalEgg_Earth_01`| 447 | |Rocky Egg +1|`PalEgg_Earth_02`| 448 | |Large Rocky Egg +2|`PalEgg_Earth_03`| 449 | |Large Rocky Egg +3|`PalEgg_Earth_04`| 450 | |Huge Rocky Egg +4|`PalEgg_Earth_05`| 451 | |Dark Egg|`PalEgg_Dark_01`| 452 | |Dark Egg +1|`PalEgg_Dark_02`| 453 | |Large Dark Egg +2|`PalEgg_Dark_03`| 454 | |Large Dark Egg +3|`PalEgg_Dark_04`| 455 | |Huge Dark Egg +4|`PalEgg_Dark_05`| 456 | |Dragon Egg|`PalEgg_Dragon_01`| 457 | |Dragon Egg +1|`PalEgg_Dragon_02`| 458 | |Large Dragon Egg +2|`PalEgg_Dragon_03`| 459 | |Large Dragon Egg +3|`PalEgg_Dragon_04`| 460 | |Huge Dragon Egg +4|`PalEgg_Dragon_05`| 461 | |Repair Kit|`RepairKit`| 462 | |Mushroom|`Mushroom`| 463 | |Baked Mushroom|`BakedMushroom`| 464 | |Honey|`Honey`| 465 | |Cotton Candy|`Sweet`| 466 | |Skill Fruit: Power Shot|`SkillCard_PowerShot`| 467 | |Skill Fruit: Power Bomb|`SkillCard_PowerBall`| 468 | |Skill Fruit: Pal Blast|`SkillCard_HyperBeam`| 469 | |Skill Fruit: Air Cannon|`SkillCard_AirCanon`| 470 | |Skill Fruit: Implode|`SkillCard_SelfDestruct`| 471 | |Grass Skill Fruit: Wind Cutter|`SkillCard_WindCutter`| 472 | |Grass Skill Fruit: Grass Tornado|`SkillCard_GrassTornado`| 473 | |Grass Skill Fruit: Solar Blast|`SkillCard_SolarBeam`| 474 | |Grass Skill Fruit: Seed Machine Gun|`SkillCard_SeedMachinegun`| 475 | |Grass Skill Fruit: Spine Vine|`SkillCard_RootAttack`| 476 | |Grass Skill Fruit: Seed Mine|`SkillCard_SeedMine`| 477 | |Water Skill Fruit: Aqua Gun|`SkillCard_WaterGun`| 478 | |Water Skill Fruit: Aqua Burst|`SkillCard_WaterBall`| 479 | |Water Skill Fruit: Hydro Laser|`SkillCard_HydroPump`| 480 | |Water Skill Fruit: Hydro Jet|`SkillCard_AquaJet`| 481 | |Water Skill Fruit: Bubble Blast|`SkillCard_BubbleShot`| 482 | |Water Skill Fruit: Acid Rain|`SkillCard_AcidRain`| 483 | |Fire Skill Fruit: Ignis Blast|`SkillCard_FireBlast`| 484 | |Fire Skill Fruit: Ignis Breath|`SkillCard_Flamethrower`| 485 | |Fire Skill Fruit: Fire Ball|`SkillCard_FireBall`| 486 | |Fire Skill Fruit: Flare Arrow|`SkillCard_FlareArrow`| 487 | |Fire Skill Fruit: Spirit Fire|`SkillCard_FireSeed`| 488 | |Fire Skill Fruit: Ignis Rage|`SkillCard_Inferno`| 489 | |Fire Skill Fruit: Flare Storm|`SkillCard_FlareTornado`| 490 | |Electric Skill Fruit: Shockwave|`SkillCard_ElecWave`| 491 | |Electric Skill Fruit: Lightning Bolt|`SkillCard_Thunderbolt`| 492 | |Electric Skill Fruit: Lightning Streak|`SkillCard_LineThunder`| 493 | |Electric Skill Fruit: Plasma Funnel|`SkillCard_ThunderFunnel`| 494 | |Electric Skill Fruit: Spark Blast|`SkillCard_SpreadPulse`| 495 | |Electric Skill Fruit: Lock-on Laser|`SkillCard_LockonLaser`| 496 | |Electric Skill Fruit: Electric Ball|`SkillCard_ThunderBall`| 497 | |Electric Skill Fruit: Tri-Lightning|`SkillCard_ThreeThunder`| 498 | |Electric Skill Fruit: Lightning Strike|`SkillCard_LightningStrike`| 499 | |Earth Skill Fruit: Stone Cannon|`SkillCard_ThrowRock`| 500 | |Earth Skill Fruit: Sand Tornado|`SkillCard_SandTornado`| 501 | |Earth Skill Fruit: Rock Lance|`SkillCard_RockLance`| 502 | |Earth Skill Fruit: Bog Blast|`SkillCard_MudShot`| 503 | |Earth Skill Fruit: Stone Blast|`SkillCard_StoneShotgun`| 504 | |Ice Skill Fruit: Ice Missile|`SkillCard_IceMissile`| 505 | |Ice Skill Fruit: Iceberg|`SkillCard_BlizzardLance`| 506 | |Ice Skill Fruit: Blizzard Spike|`SkillCard_IcicleThrow`| 507 | |Ice Skill Fruit: Icicle Cutter|`SkillCard_IceBlade`| 508 | |Ice Skill Fruit: Crystal Breath|`SkillCard_FrostBreath`| 509 | |Dark Skill Fruit: Shadow Burst|`SkillCard_DarkWave`| 510 | |Dark Skill Fruit: Nightmare Ball|`SkillCard_ShadowBall`| 511 | |Dark Skill Fruit: Psycho Gravity|`SkillCard_Psychokinesis`| 512 | |Dark Skill Fruit: Poison Blast|`SkillCard_PoisonShot`| 513 | |Dark Skill Fruit: Spirit Flame|`SkillCard_GhostFlame`| 514 | |Dark Skill Fruit: Dark Laser|`SkillCard_DarkLaser`| 515 | |Dragon Skill Fruit: Draconic Breath|`SkillCard_DragonBreath`| 516 | |Dragon Skill Fruit: Dragon Cannon|`SkillCard_DragonCanon`| 517 | |Dragon Skill Fruit: Dragon Burst|`SkillCard_DragonWave`| 518 | |Dragon Skill Fruit: Dragon Meteor|`SkillCard_DragonMeteor`| 519 | |Chikipi Poultry|`Meat_ChickenPal`| 520 | |Lamball Mutton|`Meat_SheepBall`| 521 | |Raw Kelpsea|`Meat_Kelpie`| 522 | |Galeclaw Poultry|`Meat_Eagle`| 523 | |Rushoar Pork|`Meat_Boar`| 524 | |Raw Dumud|`Meat_LazyCatfish`| 525 | |Eikthyrdeer Venison|`Meat_Deer`| 526 | |Reindrix Venison|`Meat_IceDeer`| 527 | |Caprity Meat|`Meat_BerryGoat`| 528 | |Mozzarina Meat|`Meat_CowPal`| 529 | |Broncherry Meat|`Meat_SakuraSaurus`| 530 | |Mammorest Meat|`Meat_GrassMammoth`| 531 | |Grilled Chikipi|`BakedMeat_ChickenPal`| 532 | |Lamball Kebab|`BakedMeat_SheepBall`| 533 | |Grilled Kelpsea|`BakedMeat_Kelpie`| 534 | |Grilled Galeclaw|`BakedMeat_Eagle`| 535 | |Roast Rushoar|`BakedMeat_Boar`| 536 | |Broiled Dumud|`BakedMeat_LazyCatfish`| 537 | |Roast Eikthyrdeer|`BakedMeat_Deer`| 538 | |Roast Reindrix|`BakedMeat_IceDeer`| 539 | |Herb Roasted Caprity|`BakedMeat_BerryGoat`| 540 | |Mozzarina Steak|`BakedMeat_CowPal`| 541 | |Broncherry Rib Roast|`BakedMeat_SakuraSaurus`| 542 | |Mammorest Steak|`BakedMeat_GrassMammoth`| 543 | |Chikipi Sauté|`ChickenSaute`| 544 | |Herb Roasted Lamball|`GrilledSheepHerbs`| 545 | |Grilled Lamball|`GenghisKhan`| 546 | |Stewed Galeclaw|`Eaglestew`| 547 | |Rushoar Bacon 'n' Eggs|`BaconEggs`| 548 | |Reindrix Stew|`StewedIceDeer`| 549 | |Fried Chikipi|`FriedChicken`| 550 | |Rushoar Hot Dog +1|`HotDog_2`| 551 | |Eikthyrdeer Loco Moco|`DeerLocoMoco`| 552 | |Eikthyrdeer Stew|`DeerStew`| 553 | |Mozzarina Hamburger +1|`Hamburger_2`| 554 | |Mozzarina Cheeseburger +1|`Cheeseburger_2`| 555 | |Fried Kelpsea|`FriedKelpie`| 556 | |Dumud Chowder|`Chowder`| 557 | |Low Quality Recovery Meds|`Potion_Low`| 558 | |Recovery Meds|`Potion`| 559 | |High Quality Recovery Meds|`Potion_High`| 560 | |Cavern Mushroom|`CaveMushroom`| 561 | |Vital Remedy|`Elixir_hp_01`| 562 | |Stamina Remedy|`Elixir_stamina_01`| 563 | |Might Remedy|`Elixir_attack_01`| 564 | |Speed Remedy|`Elixir_workspeed_01`| 565 | |Burden Remedy|`Elixir_weight_01`| 566 | |Vital Elixir +1|`Elixir_hp_02`| 567 | |Stamina Elixir +1|`Elixir_stamina_02`| 568 | |Might Elixir +1|`Elixir_attack_02`| 569 | |Speed Elixir +1|`Elixir_workspeed_02`| 570 | |Burden Elixir +1|`Elixir_weight_02`| 571 | |Training Manual (S)|`ExpBoost_01`| 572 | |Training Manual (M) +1|`ExpBoost_02`| 573 | |Training Manual (L) +2|`ExpBoost_03`| 574 | |Training Manual (XL) +3|`ExpBoost_04`| 575 | |Training Crystal|`LvUP_01`| 576 | |Life Fruit|`Fruit_hp_01`| 577 | |Power Fruit|`Fruit_attack_01`| 578 | |Stout Fruit|`Fruit__defense_01`| 579 | |All-Purpose Pal Extract☆1|`Rankup_1`| 580 | |All-Purpose Pal Extract☆2 +1|`Rankup_2`| 581 | |All-Purpose Pal Extract☆3 +2|`Rankup_3`| 582 | |All-Purpose Pal Extract☆4 +3|`Rankup_4`| 583 | |Concentrated All-Purpose Pal Extract|`Rankup_Arbitrary`| 584 | |Skill Fruit: Air Blade|`SkillCard_AirBlade`| 585 | |Grass Skill Fruit: Circle Vine|`SkillCard_RootLance`| 586 | |Grass Skill Fruit: Multicutter|`SkillCard_SpecialCutter`| 587 | |Water Skill Fruit: Splash|`SkillCard_LineGeyser`| 588 | |Water Skill Fruit: Wall Splash|`SkillCard_WallSplash`| 589 | |Fire Skill Fruit: Flame Wall|`SkillCard_FlameWall`| 590 | |Fire Skill Fruit: Volcanic Rain|`SkillCard_Eruption`| 591 | |Electric Skill Fruit: TriSpark|`SkillCard_TriSpark`| 592 | |Electric Skill Fruit: Thunder Rain|`SkillCard_ThunderRain`| 593 | |Electric Skill Fruit: Thunderstorm|`SkillCard_ThunderStorm`| 594 | |Earth Skill Fruit: Rockburst|`SkillCard_Tremor`| 595 | |Earth Skill Fruit: Sand Twister|`SkillCard_SandTwister`| 596 | |Ice Skill Fruit: Icicle Line|`SkillCard_IcicleLine`| 597 | |Ice Skill Fruit: Diamond Rain|`SkillCard_DiamondFall`| 598 | |Dark Skill Fruit: Dark Cannon|`SkillCard_DarkCanon`| 599 | |Dark Skill Fruit: Dark Arrow|`SkillCard_DarkArrow`| 600 | |Dark Skill Fruit: Umbral Surge|`SkillCard_DarkPulse`| 601 | |Dark Skill Fruit: Apocalypse|`SkillCard_Apocalypse`| 602 | |Dragon Skill Fruit: Beam Slicer|`SkillCard_BeamSlicer`| 603 | |Dragon Skill Fruit: Comet|`SkillCard_Commet`| 604 | |Dragon Skill Fruit: Blast Cannon|`SkillCard_BlastCanon`| 605 | |Mysterious Mushroom|`PoisonMushroom`| 606 | |Mysterious Mushroom Juice|`MushroomJuice`| 607 | |Skill Fruit: Holy Burst|`SkillCard_HolyBlast`| 608 | |Fire Skill Fruit: Flame Funnel|`SkillCard_FlameFunnel`| 609 | |Potato|`Potato`| 610 | |Carrot|`Carrot`| 611 | |Onion|`Onion`| 612 | |Rushoar Gyoza|`Gyoza`| 613 | |Stir-Fried Vegetables|`StirFriedVegetables`| 614 | |French Fries|`PotatoChips`| 615 | |Broncherry Fried Noodles|`Yakisoba`| 616 | |Spring Rolls|`SpringRolls`| 617 | |Gratin|`Gratin`| 618 | |Minestrone|`Minestrone`| 619 | |Mammorest Curry|`Curry`| 620 | |Galeclaw Nikujaga|`MeatAndPotatoes`| 621 | |Mushroom Quiche|`Quiche`| 622 | |Revival Potion|`PalRevive`| 623 | |Advanced Recovery Meds|`Potion_Extreme`| 624 | |Applied Kindling Technique â… |`WorkSuitability_AddTicket_EmitFlame`| 625 | |Applied Watering Technique â…  |`WorkSuitability_AddTicket_Watering`| 626 | |Applied Planting Technique â… |`WorkSuitability_AddTicket_Seeding`| 627 | |Applied Generating Electricity Technique â… |`WorkSuitability_AddTicket_GenerateElectricity`| 628 | |Applied Handiwork Technique â… |`WorkSuitability_AddTicket_Handcraft`| 629 | |Applied Gathering Technique â… |`WorkSuitability_AddTicket_Collection`| 630 | |Applied LumberingTechnique â… |`WorkSuitability_AddTicket_Deforest`| 631 | |Applied Mining Technique â… |`WorkSuitability_AddTicket_Mining`| 632 | |Applied Medicine Production Technique â… |`WorkSuitability_AddTicket_ProductMedicine`| 633 | |Applied Cooling Technique â… |`WorkSuitability_AddTicket_Cool`| 634 | |Applied Transporting Technique â… |`WorkSuitability_AddTicket_Transport`| 635 | |Future Technical Manual|`TechnologyBook_G3`| 636 | |Ancient Technical Manual|`AncientTechnologyBook_G1`| 637 | |High Grade Technical Manual|`TechnologyBook_G1`| 638 | |Innovative Technical Manual|`TechnologyBook_G2`| 639 | |Homeward Thundercloud|`Homeward`| 640 | |Gold Coin|`Money`| 641 | |Animal Skin|`AnimalSkin`| 642 | |Arrow|`Arrow`| 643 | |Poison Arrow|`Arrow_Poison`| 644 | |Fire Arrow|`Arrow_Fire`| 645 | |Charcoal|`Charcoal`| 646 | |Claw|`Claws`| 647 | |Cloth|`Cloth`| 648 | |High Quality Cloth|`Cloth2`| 649 | |Coal|`Coal`| 650 | |Ingot|`CopperIngot`| 651 | |Ore|`CopperOre`| 652 | |Rocket Ammo|`ExplosiveBullet`| 653 | |Fang|`Fang`| 654 | |Fiber|`Fiber`| 655 | |Gunpowder|`Gunpowder`| 656 | |Gunpowder|`Gunpowder2`| 657 | |Refined Ingot|`IronIngot`| 658 | |Energy Cartridge|`LaserBullet`| 659 | |Leather|`Leather`| 660 | |Nail|`MachineParts`| 661 | |Circuit Board|`MachineParts2`| 662 | |Decal Ink|`InkBullet`| 663 | |Handgun Ammo|`HandgunBullet`| 664 | |Rifle Ammo|`RifleBullet`| 665 | |Shotgun Shell|`ShotgunBullet`| 666 | |Coarse Ammo|`RoughBullet`| 667 | |Machine Gun Ammo|`MachingunBullet`| 668 | |Assault Rifle Ammo|`AssaultRifleBullet`| 669 | |Magnum Ammo|`MagnumBullet`| 670 | |Pal Metal Ingot|`StealIngot`| 671 | |Stone|`Stone`| 672 | |Paldium Fragment|`Pal_crystal_S`| 673 | |Paldium Clump|`Pal_crystal_L`| 674 | |Dung|`Unko_S`| 675 | |Huge Dung|`Unko_L`| 676 | |Berry Seeds|`BerrySeeds`| 677 | |PotatoSeedPotatoes|`PotatoSeedPotatoes`| 678 | |Tomato Seeds|`TomatoSeeds`| 679 | |Lettuce Seeds|`LettuceSeeds`| 680 | |Wheat Seeds|`WheatSeeds`| 681 | |Wood|`Wood`| 682 | |Wool|`Wool`| 683 | |Crude Oil|`CrudeOil`| 684 | |Plasteel|`Plastic`| 685 | |Computer|`Computer`| 686 | |Lifmunk Effigy|`Relic`| 687 | |Ruby|`Ruby`| 688 | |Sapphire|`Sapphire`| 689 | |Emerald|`Eemerald`| 690 | |Diamond|`Diamond`| 691 | |Lifmunk's Submachine Gun|`SkillUnlock_Carbunclo`| 692 | |Direhowl's Saddled Harness|`SkillUnlock_Garm`| 693 | |Ancient Civilization Parts|`PalCrystal_Ex`| 694 | |Jormuntide Ignis Saddle|`SkillUnlock_Umihebi_Fire`| 695 | |Eikthyrdeer Terra Saddle|`SkillUnlock_Deer_Ground`| 696 | |Jolthog Cryst's Gloves|`SkillUnlock_Hedgehog_Ice`| 697 | |Dinossom Lux Saddle|`SkillUnlock_FlowerDinosaur_Electric`| 698 | |Mammorest Cryst Saddle|`SkillUnlock_GrassMammoth_Ice`| 699 | |Relaxaurus Lux's Missile Launcher|`SkillUnlock_LazyDragon_Electric`| 700 | |Pyrin Noct Saddle|`SkillUnlock_FireKirin_Dark`| 701 | |Broncherry Aqua Saddle|`SkillUnlock_SakuraSaurus_Water`| 702 | |Elphidran Aqua Saddle|`SkillUnlock_FairyDragon_Water`| 703 | |Blazehowl Noct Saddle|`SkillUnlock_Manticore_Dark`| 704 | |Suzaku Aqua Saddle|`SkillUnlock_Suzaku_Water`| 705 | |Surfent Terra Saddle|`SkillUnlock_Serpent_Ground`| 706 | |Reptyro Cryst Saddle|`SkillUnlock_VolcanicMonster_Ice`| 707 | |Frostallion Noct Saddle|`SkillUnlock_IceHorse_Dark`| 708 | |Mossanda Lux's Grenade Launcher|`SkillUnlock_GrassPanda_Electric`| 709 | |Wumpo Botan Saddle|`SkillUnlock_Yeti_Grass`| 710 | |Kingpaca Cryst Saddle|`SkillUnlock_KingAlpaca_Ice`| 711 | |Vanwyrm Cryst Saddle|`SkillUnlock_BirdDragon_Ice`| 712 | |Hangyu Cryst's Glove|`SkillUnlock_WindChimes_Ice`| 713 | |Jormuntide Saddle|`SkillUnlock_Umihebi`| 714 | |Eikthyrdeer Saddle|`SkillUnlock_Deer`| 715 | |Jolthog's Gloves|`SkillUnlock_Hedgehog`| 716 | |Foxparks's Harness|`SkillUnlock_Kitsunebi`| 717 | |Rushoar Saddle|`SkillUnlock_Boar`| 718 | |Tanzee's Assault Rifle|`SkillUnlock_Monkey`| 719 | |Pengullet Rocket Launcher|`SkillUnlock_Penguin`| 720 | |Melpaca Saddle|`SkillUnlock_Alpaca`| 721 | |Dinossom Saddle|`SkillUnlock_FlowerDinosaur`| 722 | |Mammorest Saddle|`SkillUnlock_GrassMammoth`| 723 | |Univolt Saddle|`SkillUnlock_Kirin`| 724 | |Grizzbolt's Minigun|`SkillUnlock_ElecPanda`| 725 | |Relaxaurus's Missile Launcher|`SkillUnlock_LazyDragon`| 726 | |Pyrin Saddle|`SkillUnlock_FireKirin`| 727 | |Broncherry Saddle|`SkillUnlock_SakuraSaurus`| 728 | |Arsox Saddle|`SkillUnlock_FlameBuffalo`| 729 | |Azurobe Saddle|`SkillUnlock_BlueDragon`| 730 | |Elphidran Saddle|`SkillUnlock_FairyDragon`| 731 | |Fenglope Saddle|`SkillUnlock_FengyunDeeper`| 732 | |Tocotoco's Gloves|`SkillUnlock_ColorfulBird`| 733 | |Galeclaw's Gloves|`SkillUnlock_Eagle`| 734 | |Killamari's Gloves|`SkillUnlock_NegativeOctopus`| 735 | |Celaray's Gloves|`SkillUnlock_FlyingManta`| 736 | |Maraith Saddle|`SkillUnlock_GhostBeast`| 737 | |Flopie's Necklace|`SkillUnlock_FlowerRabbit`| 738 | |Blazehowl Saddle|`SkillUnlock_Manticore`| 739 | |Suzaku Saddle|`SkillUnlock_Suzaku`| 740 | |Surfent Saddle|`SkillUnlock_Serpent`| 741 | |Dazzi's Necklace|`SkillUnlock_RaijinDaughter`| 742 | |Reptyro Saddle|`SkillUnlock_VolcanicMonster`| 743 | |Kitsun Saddle|`SkillUnlock_AmaterasuWolf`| 744 | |Daedream's Necklace|`SkillUnlock_DreamDemon`| 745 | |Dragostrophe's Shotgun|`SkillUnlock_BlackFurDragon`| 746 | |Frostallion Saddle|`SkillUnlock_IceHorse`| 747 | |Faleris Saddle|`SkillUnlock_Horus`| 748 | |Blazamut Saddle|`SkillUnlock_KingBahamut`| 749 | |Reindrix Saddle|`SkillUnlock_IceDeer`| 750 | |Shadowbeak Saddle|`SkillUnlock_BlackGriffon`| 751 | |Boltmane Saddle|`SkillUnlock_ElecLion`| 752 | |Yakumo Saddle|`SkillUnlock_GuardianDog`| 753 | |Astegon Saddle|`SkillUnlock_BlackMetalDragon`| 754 | |Quivern Saddle|`SkillUnlock_SkyDragon`| 755 | |Rayhound Saddle|`SkillUnlock_ThunderDog`| 756 | |Mossanda's Grenade Launcher|`SkillUnlock_GrassPanda`| 757 | |Wumpo Saddle|`SkillUnlock_Yeti`| 758 | |Nitewing Saddle|`SkillUnlock_HawkBird`| 759 | |Jetragon's Missile Launcher|`SkillUnlock_JetDragon`| 760 | |Helzephyr Saddle|`SkillUnlock_HadesBird`| 761 | |Kingpaca Saddle|`SkillUnlock_KingAlpaca`| 762 | |Paladius Saddle|`SkillUnlock_SaintCentaur`| 763 | |en_text's Power Converter|`SkillUnlock_DarkMutant`| 764 | |Beakon Saddle|`SkillUnlock_ThunderBird`| 765 | |Ragnahawk Saddle|`SkillUnlock_RedArmorBird`| 766 | |Necromus Saddle|`SkillUnlock_BlackCentaur`| 767 | |Sweepa Saddle|`SkillUnlock_MopKing`| 768 | |Gildane Saddle|`SkillUnlock_GoldenHorse`| 769 | |Nyafia's Shotgun|`SkillUnlock_BadCatgirl`| 770 | |Grintale Saddle|`SkillUnlock_NaughtyCat`| 771 | |Dazemu Saddle|`SkillUnlock_FeatherOstrich`| 772 | |Digtoise's Headband|`SkillUnlock_DrillGame`| 773 | |Vanwyrm Saddle|`SkillUnlock_BirdDragon`| 774 | |Chillet Saddle|`SkillUnlock_WeaselDragon`| 775 | |Hangyu's Gloves|`SkillUnlock_WindChimes`| 776 | |Small Pal Soul|`PalUpgradeStone`| 777 | |Medium Pal Soul|`PalUpgradeStone2`| 778 | |Large Pal Soul|`PalUpgradeStone3`| 779 | |Sulfur|`Sulfur`| 780 | |Pure Quartz|`Quartz`| 781 | |High Quality Pal Oil|`PalOil`| 782 | |Polymer|`Polymer`| 783 | |Electric Organ|`ElectricOrgan`| 784 | |Venom Gland|`Venom`| 785 | |Flame Organ|`FireOrgan`| 786 | |Ice Organ|`IceOrgan`| 787 | |Bone|`Bone`| 788 | |Silicon|`Silicon`| 789 | |Cement|`Cement`| 790 | |Carbon Fiber|`CarbonFiber`| 791 | |Horn|`Horn`| 792 | |Pal Fluids|`PalFluid`| 793 | |Tocotoco Feather|`PalItem_ColorfulBird`| 794 | |Gumoss Leaf|`PalItem_PlantSlime`| 795 | |Penking Plume|`PalItem_CaptainPenguin`| 796 | |Katress Hair|`PalItem_CatMage`| 797 | |Precious Dragon Stone|`PalItem_ToSell_01`| 798 | |Precious Plume +1|`PalItem_ToSell_02`| 799 | |Precious Entrails +2|`PalItem_ToSell_03`| 800 | |Precious Claw +3|`PalItem_ToSell_04`| 801 | |Precious Pelt +4|`PalItem_ToSell_05`| 802 | |Hip Lantern|`Lantern`| 803 | |Small Feed Bag|`AutoMealPouch_Tier1`| 804 | |Average Feed Bag|`AutoMealPouch_Tier2`| 805 | |Large Feed Bag|`AutoMealPouch_Tier3`| 806 | |Huge Feed Bag|`AutoMealPouch_Tier4`| 807 | |Giant Feed Bag|`AutoMealPouch_Tier5`| 808 | |Monarch's Crown Schematic 1|`Blueprint_Head001_1`| 809 | |Monarch's Crown Schematic 2 +1|`Blueprint_Head001_2`| 810 | |Monarch's Crown Schematic 3 +2|`Blueprint_Head001_3`| 811 | |Monarch's Crown Schematic 4 +3|`Blueprint_Head001_4`| 812 | |Blueprint of the King's Crown 5 +4|`Blueprint_Head001_5`| 813 | |Golden Crown Schematic 1|`Blueprint_Head002_1`| 814 | |Golden Crown Schematic 2 +1|`Blueprint_Head002_2`| 815 | |Golden Crown Schematic 3 +2|`Blueprint_Head002_3`| 816 | |Golden Crown Schematic 4 +3|`Blueprint_Head002_4`| 817 | |Blueprint for Golden Crown 5 +4|`Blueprint_Head002_5`| 818 | |Long-Eared Headband Schematic 1|`Blueprint_Head003_1`| 819 | |Long-Eared Headband Schematic 2 +1|`Blueprint_Head003_2`| 820 | |Long-Eared Headband Schematic 3 +2|`Blueprint_Head003_3`| 821 | |Long-Eared Headband Schematic 4 +3|`Blueprint_Head003_4`| 822 | |5 Blueprints of Long-eared Headband +4|`Blueprint_Head003_5`| 823 | |Witch Hat Schematic 1|`Blueprint_Head004_1`| 824 | |Witch Hat Schematic 2 +1|`Blueprint_Head004_2`| 825 | |Witch Hat Schematic 3 +2|`Blueprint_Head004_3`| 826 | |Witch Hat Schematic 4 +3|`Blueprint_Head004_4`| 827 | |Design of Witch Hat No. 5 +4|`Blueprint_Head004_5`| 828 | |Soft Hat Schematic 1|`Blueprint_Head005_1`| 829 | |Soft Hat Schematic 2 +1|`Blueprint_Head005_2`| 830 | |Soft Hat Schematic 3 +2|`Blueprint_Head005_3`| 831 | |Soft Hat Schematic 4 +3|`Blueprint_Head005_4`| 832 | |Blueprint of Soft Hat 5 +4|`Blueprint_Head005_5`| 833 | |Helmet Schematic 1|`Blueprint_Head006_1`| 834 | |Helmet Schematic 2 +1|`Blueprint_Head006_2`| 835 | |Helmet Schematic 3 +2|`Blueprint_Head006_3`| 836 | |Helmet Schematic 4 +3|`Blueprint_Head006_4`| 837 | |Blueprint of Helmet 5 +4|`Blueprint_Head006_5`| 838 | |Silk Hat Schematic 1|`Blueprint_Head007_1`| 839 | |Silk Hat Schematic 2 +1|`Blueprint_Head007_2`| 840 | |Silk Hat Schematic 3 +2|`Blueprint_Head007_3`| 841 | |Silk Hat Schematic 4 +3|`Blueprint_Head007_4`| 842 | |5 Schematic Diagrams of the Silk Hat +4|`Blueprint_Head007_5`| 843 | |Tricorne Schematic 1|`Blueprint_Head008_1`| 844 | |Tricorne Schematic 2 +1|`Blueprint_Head008_2`| 845 | |Tricorne Schematic 3 +2|`Blueprint_Head008_3`| 846 | |Tricorne Schematic 4 +3|`Blueprint_Head008_4`| 847 | |Blueprint of the Tricorn Hat 5 +4|`Blueprint_Head008_5`| 848 | |Exploration Cap Schematic 1|`Blueprint_Head009_1`| 849 | |Exploration Cap Schematic 2 +1|`Blueprint_Head009_2`| 850 | |Exploration Cap Schematic 3 +2|`Blueprint_Head009_3`| 851 | |Exploration Cap Schematic 4 +3|`Blueprint_Head009_4`| 852 | |Blueprint of Exploration Hat 5 +4|`Blueprint_Head009_5`| 853 | |Graduation Cap Schematic 1|`Blueprint_Head010_1`| 854 | |Graduation Cap Schematic 2 +1|`Blueprint_Head010_2`| 855 | |Graduation Cap Schematic 3 +2|`Blueprint_Head010_3`| 856 | |Graduation Cap Schematic 4 +3|`Blueprint_Head010_4`| 857 | |Blueprint 5 of University Hat +4|`Blueprint_Head010_5`| 858 | |Farming Hat Schematic 1|`Blueprint_Head011_1`| 859 | |Farming Hat Schematic 2 +1|`Blueprint_Head011_2`| 860 | |Farming Hat Schematic 3 +2|`Blueprint_Head011_3`| 861 | |Farming Hat Schematic 4 +3|`Blueprint_Head011_4`| 862 | |5 Diagrams of Agricultural Hat +4|`Blueprint_Head011_5`| 863 | |Bowler Hat Schematic 1|`Blueprint_Head012_1`| 864 | |Bowler Hat Schematic 2 +1|`Blueprint_Head012_2`| 865 | |Bowler Hat Schematic 3 +2|`Blueprint_Head012_3`| 866 | |Bowler Hat Schematic 4 +3|`Blueprint_Head012_4`| 867 | |Blueprint of Bowler Hat 5 +4|`Blueprint_Head012_5`| 868 | |Tocotoco Cap Schematic 1|`Blueprint_Head013_1`| 869 | |Tocotoco Cap Schematic 2 +1|`Blueprint_Head013_2`| 870 | |Tocotoco Cap Schematic 3 +2|`Blueprint_Head013_3`| 871 | |Tocotoco Cap Schematic 4 +3|`Blueprint_Head013_4`| 872 | |Design Plan 5 for the Crutchli Hat +4|`Blueprint_Head013_5`| 873 | |Grinning Tocotoco Cap Schematic 1|`Blueprint_Head014_1`| 874 | |Grinning Tocotoco Cap Schematic 2 +1|`Blueprint_Head014_2`| 875 | |Grinning Tocotoco Cap Schematic 3 +2|`Blueprint_Head014_3`| 876 | |Grinning Tocotoco Cap Schematic 4 +3|`Blueprint_Head014_4`| 877 | |Grinning Curly Hat Blueprint 5 +4|`Blueprint_Head014_5`| 878 | |Gumoss Cap Schematic 1|`Blueprint_Head015_1`| 879 | |Gumoss Cap Schematic 2 +1|`Blueprint_Head015_2`| 880 | |Gumoss Cap Schematic 3 +2|`Blueprint_Head015_3`| 881 | |Gumoss Cap Schematic 4 +3|`Blueprint_Head015_4`| 882 | |5 Blueprints of Naemochi Hat +4|`Blueprint_Head015_5`| 883 | |Penking Cap Schematic 1|`Blueprint_Head016_1`| 884 | |Penking Cap Schematic 2 +1|`Blueprint_Head016_2`| 885 | |Penking Cap Schematic 3 +2|`Blueprint_Head016_3`| 886 | |Penking Cap Schematic 4 +3|`Blueprint_Head016_4`| 887 | |Blueprint of Capppen Hat 5 +4|`Blueprint_Head016_5`| 888 | |Katress Cap Schematic 1|`Blueprint_Head017_1`| 889 | |Katress Cap Schematic 2 +1|`Blueprint_Head017_2`| 890 | |Katress Cap Schematic 3 +2|`Blueprint_Head017_3`| 891 | |Katress Cap Schematic 4 +3|`Blueprint_Head017_4`| 892 | |Design Blueprint of Clemence Hat 5 +4|`Blueprint_Head017_5`| 893 | |Copper Key|`TreasureBoxKey01`| 894 | |Silver Key|`TreasureBoxKey02`| 895 | |Gold Key|`TreasureBoxKey03`| 896 | |Unknown Item (BlueprintTest)|`BlueprintTest`| 897 | |Old Bow Schematic 1 +1|`Blueprint_WeakerBow_2`| 898 | |Old Bow Schematic 2 +2|`Blueprint_WeakerBow_3`| 899 | |Old Bow Schematic 3 +3|`Blueprint_WeakerBow_4`| 900 | |Old Bow Schematic 4 +4|`Blueprint_WeakerBow_5`| 901 | |Crossbow Schematic 1 +1|`Blueprint_BowGun_2`| 902 | |Crossbow Schematic 2 +2|`Blueprint_BowGun_3`| 903 | |Crossbow Schematic 3 +3|`Blueprint_BowGun_4`| 904 | |Crossbow Schematic 4 +4|`Blueprint_BowGun_5`| 905 | |Assault Rifle Schematic 1|`Blueprint_AssaultRifle_Default2`| 906 | |Assault Rifle Schematic 2|`Blueprint_AssaultRifle_Default3`| 907 | |Assault Rifle Schematic 3|`Blueprint_AssaultRifle_Default4`| 908 | |Assault Rifle Schematic 4|`Blueprint_AssaultRifle_Default5`| 909 | |Pump-Action Shotgun Schematic 1 +1|`Blueprint_PumpActionShotgun_2`| 910 | |Pump-Action Shotgun Schematic 2 +2|`Blueprint_PumpActionShotgun_3`| 911 | |Pump-Action Shotgun Schematic 3 +3|`Blueprint_PumpActionShotgun_4`| 912 | |Pump-Action Shotgun Schematic 4 +4|`Blueprint_PumpActionShotgun_5`| 913 | |Handgun Schematic 1 +1|`Blueprint_HandGun_Default_2`| 914 | |Handgun Schematic 2 +2|`Blueprint_HandGun_Default_3`| 915 | |Handgun Schematic 3 +3|`Blueprint_HandGun_Default_4`| 916 | |Handgun Schematic 4 +4|`Blueprint_HandGun_Default_5`| 917 | |Rocket Launcher Schematic 1 +1|`Blueprint_Launcher_Default_2`| 918 | |Rocket Launcher Schematic 2 +2|`Blueprint_Launcher_Default_3`| 919 | |Rocket Launcher Schematic 3 +3|`Blueprint_Launcher_Default_4`| 920 | |Rocket Launcher Schematic 4 +4|`Blueprint_Launcher_Default_5`| 921 | |Musket Schematic 1 +1|`Blueprint_Musket_2`| 922 | |Musket Schematic 2 +2|`Blueprint_Musket_3`| 923 | |Musket Schematic 3 +3|`Blueprint_Musket_4`| 924 | |Musket Schematic 4 +4|`Blueprint_Musket_5`| 925 | |Double-Barreled Shotgun Schematic 1 +1|`Blueprint_DoubleBarrelShotgun_2`| 926 | |Double-Barreled Shotgun Schematic 2 +2|`Blueprint_DoubleBarrelShotgun_3`| 927 | |Double-Barreled Shotgun Schematic 3 +3|`Blueprint_DoubleBarrelShotgun_4`| 928 | |Double-Barreled Shotgun Schematic 4 +4|`Blueprint_DoubleBarrelShotgun_5`| 929 | |Single-Shot Rifle Schematic 1 +1|`Blueprint_SingleShotRifle_2`| 930 | |Single-Shot Rifle Schematic 2 +2|`Blueprint_SingleShotRifle_3`| 931 | |Single-Shot Rifle Schematic 3 +3|`Blueprint_SingleShotRifle_4`| 932 | |Single-Shot Rifle Schematic 4 +4|`Blueprint_SingleShotRifle_5`| 933 | |Feathered Hair Band Schematic 1 +1|`Blueprint_FurHelmet_2`| 934 | |Feathered Hair Band Schematic 2 +2|`Blueprint_FurHelmet_3`| 935 | |Feathered Hair Band Schematic 3 +3|`Blueprint_FurHelmet_4`| 936 | |Feathered Hair Band Schematic 4 +4|`Blueprint_FurHelmet_5`| 937 | |Metal Helm Schematic 1 +1|`Blueprint_CopperHelmet_2`| 938 | |Metal Helm Schematic 2 +2|`Blueprint_CopperHelmet_3`| 939 | |Metal Helm Schematic 3 +3|`Blueprint_CopperHelmet_4`| 940 | |Metal Helm Schematic 4 +4|`Blueprint_CopperHelmet_5`| 941 | |Refined Metal Helm Schematic 1 +1|`Blueprint_IronHelmet_2`| 942 | |Refined Metal Helm Schematic 2 +2|`Blueprint_IronHelmet_3`| 943 | |Refined Metal Helm Schematic 3 +3|`Blueprint_IronHelmet_4`| 944 | |Refined Metal Helm Schematic 4 +4|`Blueprint_IronHelmet_5`| 945 | |Pal Metal Helm Schematic 1 +1|`Blueprint_StealHelmet_2`| 946 | |Pal Metal Helm Schematic 2 +2|`Blueprint_StealHelmet_3`| 947 | |Pal Metal Helm Schematic 3 +3|`Blueprint_StealHelmet_4`| 948 | |Pal Metal Helm Schematic 4 +4|`Blueprint_StealHelmet_5`| 949 | |Cloth Outfit Schematic 1 +1|`Blueprint_ClothArmor_2`| 950 | |Cloth Outfit Schematic 2 +2|`Blueprint_ClothArmor_3`| 951 | |Cloth Outfit Schematic 3 +3|`Blueprint_ClothArmor_4`| 952 | |Cloth Outfit Schematic 4 +4|`Blueprint_ClothArmor_5`| 953 | |Pelt Armor Schematic 1 +1|`Blueprint_FurArmor_2`| 954 | |Pelt Armor Schematic 2 +2|`Blueprint_FurArmor_3`| 955 | |Pelt Armor Schematic 3 +3|`Blueprint_FurArmor_4`| 956 | |Pelt Armor Schematic 4 +4|`Blueprint_FurArmor_5`| 957 | |Metal Armor Schematic 1 +1|`Blueprint_CopperArmor_2`| 958 | |Metal Armor Schematic 2 +2|`Blueprint_CopperArmor_3`| 959 | |Metal Armor Schematic 3 +3|`Blueprint_CopperArmor_4`| 960 | |Metal Armor Schematic 4 +4|`Blueprint_CopperArmor_5`| 961 | |Refined Metal Armor Schematic 1 +1|`Blueprint_IronArmor_2`| 962 | |Refined Metal Armor Schematic 2 +2|`Blueprint_IronArmor_3`| 963 | |Refined Metal Armor Schematic 3 +3|`Blueprint_IronArmor_4`| 964 | |Refined Metal Armor Schematic 4 +4|`Blueprint_IronArmor_5`| 965 | |Pal Metal Armor Schematic 1 +1|`Blueprint_StealArmor_2`| 966 | |Pal Metal Armor Schematic 2 +2|`Blueprint_StealArmor_3`| 967 | |Pal Metal Armor Schematic 3 +3|`Blueprint_StealArmor_4`| 968 | |Pal Metal Armor Schematic 4 +4|`Blueprint_StealArmor_5`| 969 | |Tropical Outfit Schematic 1 +1|`Blueprint_ClothArmorHeat_2`| 970 | |Tropical Outfit Schematic 2 +2|`Blueprint_ClothArmorHeat_3`| 971 | |Tropical Outfit Schematic 3 +3|`Blueprint_ClothArmorHeat_4`| 972 | |Tropical Outfit Schematic 4 +4|`Blueprint_ClothArmorHeat_5`| 973 | |Tundra Outfit Schematic 1 +1|`Blueprint_ClothArmorCold_2`| 974 | |Tundra Outfit Schematic 2 +2|`Blueprint_ClothArmorCold_3`| 975 | |Tundra Outfit Schematic 3 +3|`Blueprint_ClothArmorCold_4`| 976 | |Tundra Outfit Schematic 4 +4|`Blueprint_ClothArmorCold_5`| 977 | |Heat Resistant Pelt Armor Schematic 1 +1|`Blueprint_FurArmorHeat_2`| 978 | |Heat Resistant Pelt Armor Schematic 2 +2|`Blueprint_FurArmorHeat_3`| 979 | |Heat Resistant Pelt Armor Schematic 3 +3|`Blueprint_FurArmorHeat_4`| 980 | |Heat Resistant Pelt Armor Schematic 4 +4|`Blueprint_FurArmorHeat_5`| 981 | |Cold Resistant Pelt Armor Schematic 1 +1|`Blueprint_FurArmorCold_2`| 982 | |Cold Resistant Pelt Armor Schematic 2 +2|`Blueprint_FurArmorCold_3`| 983 | |Cold Resistant Pelt Armor Schematic 3 +3|`Blueprint_FurArmorCold_4`| 984 | |Cold Resistant Pelt Armor Schematic 4 +4|`Blueprint_FurArmorCold_5`| 985 | |Heat Resistant Metal Armor Schematic 1 +1|`Blueprint_CopperArmorHeat_2`| 986 | |Heat Resistant Metal Armor Schematic 2 +2|`Blueprint_CopperArmorHeat_3`| 987 | |Heat Resistant Metal Armor Schematic 3 +3|`Blueprint_CopperArmorHeat_4`| 988 | |Heat Resistant Metal Armor Schematic 4 +4|`Blueprint_CopperArmorHeat_5`| 989 | |Cold Resistant Metal Armor Schematic 1 +1|`Blueprint_CopperArmorCold_2`| 990 | |Cold Resistant Metal Armor Schematic 2 +2|`Blueprint_CopperArmorCold_3`| 991 | |Cold Resistant Metal Armor Schematic 3 +3|`Blueprint_CopperArmorCold_4`| 992 | |Cold Resistant Metal Armor Schematic 4 +4|`Blueprint_CopperArmorCold_5`| 993 | |Heat Resistant Refined Metal Armor Schematic 1 +1|`Blueprint_IronArmorHeat_2`| 994 | |Heat Resistant Refined Metal Armor Schematic 2 +2|`Blueprint_IronArmorHeat_3`| 995 | |Heat Resistant Refined Metal Armor Schematic 3 +3|`Blueprint_IronArmorHeat_4`| 996 | |Heat Resistant Refined Metal Armor Schematic 4 +4|`Blueprint_IronArmorHeat_5`| 997 | |Cold Resistant Refined Metal Armor Schematic 1 +1|`Blueprint_IronArmorCold_2`| 998 | |Cold Resistant Refined Metal Armor Schematic 2 +2|`Blueprint_IronArmorCold_3`| 999 | |Cold Resistant Refined Metal Armor Schematic 3 +3|`Blueprint_IronArmorCold_4`| 1000 | |Cold Resistant Refined Metal Armor Schematic 4 +4|`Blueprint_IronArmorCold_5`| 1001 | |Heat Resistant Pal Metal Armor Schematic 1 +1|`Blueprint_StealArmorHeat_2`| 1002 | |Heat Resistant Pal Metal Armor Schematic 2 +2|`Blueprint_StealArmorHeat_3`| 1003 | |Heat Resistant Pal Metal Armor Schematic 3 +3|`Blueprint_StealArmorHeat_4`| 1004 | |Heat Resistant Pal Metal Armor Schematic 4 +4|`Blueprint_StealArmorHeat_5`| 1005 | |Cold Resistant Pal Metal Armor Schematic 1 +1|`Blueprint_StealArmorCold_2`| 1006 | |Cold Resistant Pal Metal Armor Schematic 2 +2|`Blueprint_StealArmorCold_3`| 1007 | |Cold Resistant Pal Metal Armor Schematic 3 +3|`Blueprint_StealArmorCold_4`| 1008 | |Cold Resistant Pal Metal Armor Schematic 4 +4|`Blueprint_StealArmorCold_5`| 1009 | |Summoning Altar|`PalSummon`| 1010 | |Bellanoir's Slab|`PalSummon_NightLady`| 1011 | |Bellanoir Libero's Slab|`PalSummon_NightLady_Dark`| 1012 | |Bellanoir's Slab Fragment|`PalSummon_NightLady_Parts`| 1013 | |Bellanoir Libero's Slab Fragment|`PalSummon_NightLady_Dark_Parts`| 1014 | |Ancient Civilization Core|`AncientParts2`| 1015 | |Life Lotus (S)|`Lotus_hp_01`| 1016 | |Stamina Lotus (S)|`Lotus_stamina_01`| 1017 | |Power Lotus (S)|`Lotus_attack_01`| 1018 | |Speed Lotus (S)|`Lotus_workspeed_01`| 1019 | |Carrying Lotus (S)|`Lotus_weight_01`| 1020 | |Ribbuny Ribbon|`PalItem_PinkRabbit`| 1021 | |Swee Hair|`PalItem_MopBaby`| 1022 | |Killamari Tentacle|`PalItem_NegativeOctopus`| 1023 | |Dazzi Cloud|`PalItem_RaijinDaughter`| 1024 | |Leezpunk Crest|`PalItem_LizardMan`| 1025 | |Life Lotus (L) +1|`Lotus_hp_02`| 1026 | |Stamina Lotus (L) +1|`Lotus_stamina_02`| 1027 | |Power Lotus (L) +1|`Lotus_attack_02`| 1028 | |Speed Lotus (L) +1|`Lotus_workspeed_02`| 1029 | |Carrying Lotus (L) +1|`Lotus_weight_02`| 1030 | |Bellanoir Libero (Ultra) Slab +1|`PalSummon_NightLady_Dark_2`| 1031 | |Bellanoir Libero (Ultra) Slab Fragment +1|`PalSummon_NightLady_Dark_Parts_2`| 1032 | |Blazamut Ryu Saddle|`SkillUnlock_KingBahamut_Dragon`| 1033 | |Helzephyr Lux Saddle|`SkillUnlock_HadesBird_Electric`| 1034 | |Quivern Botan Saddle|`SkillUnlock_SkyDragon_Grass`| 1035 | |Chillet Ignis Saddle|`SkillUnlock_WeaselDragon_Fire`| 1036 | |Flamethrower Fuel|`FlamethrowerBullet`| 1037 | |Missile Ammo|`MissileBullet`| 1038 | |Grenade Ammo|`GrenadeBullet`| 1039 | |Blazamut Ryu Slab|`PalSummon_KingBahamut_Dragon`| 1040 | |Blazamut Ryu Slab Fragment|`PalSummon_KingBahamut_Dragon_Parts`| 1041 | |Blazamut Ryu (Ultra) Slab +1|`PalSummon_KingBahamut_Dragon_2`| 1042 | |Blazamut Ryu (Ultra) Slab Fragment +1|`PalSummon_KingBahamut_Dragon_Parts_2`| 1043 | |-|`Gasoline`| 1044 | |-|`Propellant`| 1045 | |Gatling Gun Ammo|`GatlingBullet`| 1046 | |Meteorite Fragment|`MeteorDrop`| 1047 | |Dog Coin|`DogCoin`| 1048 | |Makeshift Handgun Schematic 1 +1|`Blueprint_MakeshiftHandgun_2`| 1049 | |Makeshift Handgun Schematic 2 +2|`Blueprint_MakeshiftHandgun_3`| 1050 | |Makeshift Handgun Schematic 3 +3|`Blueprint_MakeshiftHandgun_4`| 1051 | |Makeshift Handgun Schematic 4 +4|`Blueprint_MakeshiftHandgun_5`| 1052 | |Mysterious Accessory Box|`UnlockEquipmentSlot_Accessory_01`| 1053 | |Box of Mystery Accessories +1|`UnlockEquipmentSlot_Accessory_02`| 1054 | |Laser Rifle Schematic 1 +1|`Blueprint_LaserRifle_2`| 1055 | |Laser Rifle Schematic 2 +2|`Blueprint_LaserRifle_3`| 1056 | |Laser Rifle Schematic 3 +3|`Blueprint_LaserRifle_4`| 1057 | |Laser Rifle Schematic 4 +4|`Blueprint_LaserRifle_5`| 1058 | |Flamethrower Schematic 1 +1|`Blueprint_FlameThrower_2`| 1059 | |Flamethrower Schematic 2 +2|`Blueprint_FlameThrower_3`| 1060 | |Flamethrower Schematic 3 +3|`Blueprint_FlameThrower_4`| 1061 | |Flamethrower Schematic 4 +4|`Blueprint_FlameThrower_5`| 1062 | |Grenade Launcher Schematic 1 +1|`Blueprint_GrenadeLauncher_2`| 1063 | |Grenade Launcher Schematic 2 +2|`Blueprint_GrenadeLauncher_3`| 1064 | |Grenade Launcher Schematic 3 +3|`Blueprint_GrenadeLauncher_4`| 1065 | |Grenade Launcher Schematic 4 +4|`Blueprint_GrenadeLauncher_5`| 1066 | |Guided Missile Launcher Schematic 1 +1|`Blueprint_GuidedMissileLauncher_2`| 1067 | |Guided Missile Launcher Schematic 2 +2|`Blueprint_GuidedMissileLauncher_3`| 1068 | |Guided Missile Launcher Schematic 3 +3|`Blueprint_GuidedMissileLauncher_4`| 1069 | |Guided Missile Launcher Schematic 4 +4|`Blueprint_GuidedMissileLauncher_5`| 1070 | |Multi Guided Missile Launcher Schematic 1 +1|`Blueprint_MultiGuidedMissileLauncher_2`| 1071 | |Multi Guided Missile Launcher Schematic 2 +2|`Blueprint_MultiGuidedMissileLauncher_3`| 1072 | |Multi Guided Missile Launcher Schematic 3 +3|`Blueprint_MultiGuidedMissileLauncher_4`| 1073 | |Multi Guided Missile Launcher Schematic 4 +4|`Blueprint_MultiGuidedMissileLauncher_5`| 1074 | |Gatling Gun Schematic 1 +1|`Blueprint_GatlingGun_2`| 1075 | |Gatling Gun Schematic 2 +2|`Blueprint_GatlingGun_3`| 1076 | |Gatling Gun Schematic 3 +3|`Blueprint_GatlingGun_4`| 1077 | |Gatling Gun Schematic 4 +4|`Blueprint_GatlingGun_5`| 1078 | |Plasteel Armor Schematic 1 +1|`Blueprint_PlasticArmor_2`| 1079 | |Plasteel Armor Schematic 2 +2|`Blueprint_PlasticArmor_3`| 1080 | |Plasteel Armor Schematic 3 +3|`Blueprint_PlasticArmor_4`| 1081 | |Plasteel Armor Schematic 4 +4|`Blueprint_PlasticArmor_5`| 1082 | |Heat Resistant Plasteel Armor Schematic 1 +1|`Blueprint_PlasticArmorHeat_2`| 1083 | |Heat Resistant Plasteel Armor Schematic 2 +2|`Blueprint_PlasticArmorHeat_3`| 1084 | |Heat Resistant Plasteel Armor Schematic 3 +3|`Blueprint_PlasticArmorHeat_4`| 1085 | |Heat Resistant Plasteel Armor Schematic 4 +4|`Blueprint_PlasticArmorHeat_5`| 1086 | |Cold Resistant Plasteel Armor Schematic 1 +1|`Blueprint_PlasticArmorCold_2`| 1087 | |Cold Resistant Plasteel Armor Schematic 2 +2|`Blueprint_PlasticArmorCold_3`| 1088 | |Cold Resistant Plasteel Armor Schematic 3 +3|`Blueprint_PlasticArmorCold_4`| 1089 | |Cold Resistant Plasteel Armor Schematic 4 +4|`Blueprint_PlasticArmorCold_5`| 1090 | |Lightweight Plasteel Armor Schematic 1 +1|`Blueprint_PlasticArmorWeight_2`| 1091 | |Lightweight Plasteel Armor Schematic 2 +2|`Blueprint_PlasticArmorWeight_3`| 1092 | |Lightweight Plasteel Armor Schematic 3 +3|`Blueprint_PlasticArmorWeight_4`| 1093 | |Lightweight Plasteel Armor Schematic 4 +4|`Blueprint_PlasticArmorWeight_5`| 1094 | |Plasteel Helmet Schematic 1 +1|`Blueprint_PlasticHelmet_2`| 1095 | |Plasteel Helmet Schematic 2 +2|`Blueprint_PlasticHelmet_3`| 1096 | |Plasteel Helmet Schematic 3 +3|`Blueprint_PlasticHelmet_4`| 1097 | |Plasteel Helmet Schematic 4 +4|`Blueprint_PlasticHelmet_5`| 1098 | |Shroomer Saddle|`SkillUnlock_MushroomDragon`| 1099 | |Shroomer Noct Saddle|`SkillUnlock_MushroomDragon_Dark`| 1100 | |Selyne Saddle|`SkillUnlock_MoonQueen`| 1101 | |Leezpunk Hood Schematic 1|`Blueprint_HeadEquip025_1`| 1102 | |Leezpunk Hood Schematic 2 +1|`Blueprint_HeadEquip025_2`| 1103 | |Leezpunk Hood Schematic 3 +2|`Blueprint_HeadEquip025_3`| 1104 | |Leezpunk Hood Schematic 4 +3|`Blueprint_HeadEquip025_4`| 1105 | |Unknown Item (Blueprint_HeadEquip025_5) +4|`Blueprint_HeadEquip025_5`| 1106 | |Killamari Cap Schematic 1|`Blueprint_HeadEquip026_1`| 1107 | |Killamari Cap Schematic 2 +1|`Blueprint_HeadEquip026_2`| 1108 | |Killamari Cap Schematic 3 +2|`Blueprint_HeadEquip026_3`| 1109 | |Killamari Cap Schematic 4 +3|`Blueprint_HeadEquip026_4`| 1110 | |Unknown Item (Blueprint_HeadEquip026_5) +4|`Blueprint_HeadEquip026_5`| 1111 | |Ribbuny Headband Schematic 1|`Blueprint_HeadEquip028_1`| 1112 | |Ribbuny Headband Schematic 2 +1|`Blueprint_HeadEquip028_2`| 1113 | |Ribbuny Headband Schematic 3 +2|`Blueprint_HeadEquip028_3`| 1114 | |Ribbuny Headband Schematic 4 +3|`Blueprint_HeadEquip028_4`| 1115 | |Unknown Item (Blueprint_HeadEquip028_5) +4|`Blueprint_HeadEquip028_5`| 1116 | |Swee Cap Schematic 1|`Blueprint_HeadEquip031_1`| 1117 | |Swee Cap Schematic 2 +1|`Blueprint_HeadEquip031_2`| 1118 | |Swee Cap Schematic 3 +2|`Blueprint_HeadEquip031_3`| 1119 | |Swee Cap Schematic 4 +3|`Blueprint_HeadEquip031_4`| 1120 | |Unknown Item (Blueprint_HeadEquip031_5) +4|`Blueprint_HeadEquip031_5`| 1121 | |Dazzi Hat Schematic 1|`Blueprint_HeadEquip032_1`| 1122 | |Dazzi Hat Schematic 2 +1|`Blueprint_HeadEquip032_2`| 1123 | |Dazzi Hat Schematic 3 +2|`Blueprint_HeadEquip032_3`| 1124 | |Dazzi Hat Schematic 4 +3|`Blueprint_HeadEquip032_4`| 1125 | |Unknown Item (Blueprint_HeadEquip032_5) +4|`Blueprint_HeadEquip032_5`| 1126 | |Multi Guided Missile Launcher Schematic|`Blueprint_MultiGuidedMissileLauncher`| 1127 | |Lockpicking Tool v1|`Unlock_Picking_Tier1`| 1128 | |Xenogard Saddle|`SkillUnlock_WhiteAlienDragon`| 1129 | |Meteorite Ammo|`MeteorBullet`| 1130 | |Lockpicking Tool v2|`Unlock_Picking_Tier2`| 1131 | |Lockpicking Tool v3|`Unlock_Picking_Tier3`| 1132 | |Xenolord Slab|`PalSummon_DarkMechaDragon`| 1133 | |Xenolord Slab Fragment|`PalSummon_DarkMechaDragon_Parts`| 1134 | |Giant Pal Soul|`PalUpgradeStone4`| 1135 | |Potato Seeds|`PotatoSeeds`| 1136 | |Carrot Seeds|`CarrotSeeds`| 1137 | |Onion Seeds|`OnionSeeds`| 1138 | |Poison Arrow Crossbow Schematic 1 +1|`Blueprint_BowGun_Poison_2`| 1139 | |Poison Arrow Crossbow Schematic 2 +2|`Blueprint_BowGun_Poison_3`| 1140 | |Poison Arrow Crossbow Schematic 3 +3|`Blueprint_BowGun_Poison_4`| 1141 | |Poison Arrow Crossbow Schematic 4 +4|`Blueprint_BowGun_Poison_5`| 1142 | |Fire Arrow Crossbow Schematic 1 +1|`Blueprint_BowGun_Fire_2`| 1143 | |Fire Arrow Crossbow Schematic 2 +2|`Blueprint_BowGun_Fire_3`| 1144 | |Fire Arrow Crossbow Schematic 3 +3|`Blueprint_BowGun_Fire_4`| 1145 | |Fire Arrow Crossbow Schematic 4 +4|`Blueprint_BowGun_Fire_5`| 1146 | |Small Pouch|`AdditionalInventory_001`| 1147 | |Medium Pouch +1|`AdditionalInventory_002`| 1148 | |Large Pouch +2|`AdditionalInventory_003`| 1149 | |Giant Pouch +3|`AdditionalInventory_004`| 1150 | |Plasma Cartridge|`EnergyLauncherBullet`| 1151 | |Predator Core|`PredatorCrystal`| 1152 | |Successful Bounty Token|`BountyProof_1`| 1153 | |Unknown Item (PalGenderReverseTest)|`PalGenderReverseTest`| 1154 | |Unknown Item (PalPassiveSkillChangeTest)|`PalPassiveSkillChangeTest`| 1155 | |Ancient Pal Manuscript|`AncientParts3`| 1156 | |Laser Gatling Cartridge|`LaserGatlingBullet`| 1157 | |Reinforced Arrow|`ReinforcedArrow`| 1158 | |Advanced Arrow|`SFArrow`| 1159 | |Chromite|`Chromium`| 1160 | |Hexolite|`StainlessSteel`| 1161 | |Xenolord (Ultra) Slab +1|`PalSummon_DarkMechaDragon_2`| 1162 | |Xenolord (Ultra) Slab Fragment +1|`PalSummon_DarkMechaDragon_Parts_2`| 1163 | |Nightstar Sand|`NightStone`| 1164 | |Dark Fragment|`PalDarkParts`| 1165 | |Hexolite Helmet Schematic 1 +1|`Blueprint_SFHelmet_2`| 1166 | |Hexolite Helmet Schematic 2 +2|`Blueprint_SFHelmet_3`| 1167 | |Hexolite Helmet Schematic 3 +3|`Blueprint_SFHelmet_4`| 1168 | |Hexolite Helmet Schematic 4 +4|`Blueprint_SFHelmet_5`| 1169 | |Hexolite Armor Schematic 1 +1|`Blueprint_SFArmor_2`| 1170 | |Hexolite Armor Schematic 2 +2|`Blueprint_SFArmor_3`| 1171 | |Hexolite Armor Schematic 3 +3|`Blueprint_SFArmor_4`| 1172 | |Hexolite Armor Schematic 4 +4|`Blueprint_SFArmor_5`| 1173 | |Heat Resistant Hexolite Armor Schematic 1 +1|`Blueprint_SFArmorHeat_2`| 1174 | |Heat Resistant Hexolite Armor Schematic 2 +2|`Blueprint_SFArmorHeat_3`| 1175 | |Heat Resistant Hexolite Armor Schematic 3 +3|`Blueprint_SFArmorHeat_4`| 1176 | |Heat Resistant Hexolite Armor Schematic 4 +4|`Blueprint_SFArmorHeat_5`| 1177 | |Cold Resistant Hexolite Armor Schematic 1 +1|`Blueprint_SFArmorCold_2`| 1178 | |Cold Resistant Hexolite Armor Schematic 2 +2|`Blueprint_SFArmorCold_3`| 1179 | |Cold Resistant Hexolite Armor Schematic 3 +3|`Blueprint_SFArmorCold_4`| 1180 | |Cold Resistant Hexolite Armor Schematic 4 +4|`Blueprint_SFArmorCold_5`| 1181 | |Lightweight Hexolite Armor Schematic 1 +1|`Blueprint_SFArmorWeight_2`| 1182 | |Lightweight Hexolite Armor Schematic 2 +2|`Blueprint_SFArmorWeight_3`| 1183 | |Lightweight Hexolite Armor Schematic 3 +3|`Blueprint_SFArmorWeight_4`| 1184 | |Lightweight Hexolite Armor Schematic 4 +4|`Blueprint_SFArmorWeight_5`| 1185 | |Laser Gatling Gun Schematic 1 +1|`Blueprint_LaserGatlingGun_2`| 1186 | |Laser Gatling Gun Schematic 2 +2|`Blueprint_LaserGatlingGun_3`| 1187 | |Laser Gatling Gun Schematic 3 +3|`Blueprint_LaserGatlingGun_4`| 1188 | |Laser Gatling Gun Schematic 4 +4|`Blueprint_LaserGatlingGun_5`| 1189 | |Plasma Cannon Schematic 1 +1|`Blueprint_EnergyRocketLauncher_2`| 1190 | |Plasma Cannon Schematic 2 +2|`Blueprint_EnergyRocketLauncher_3`| 1191 | |Plasma Cannon Schematic 3 +3|`Blueprint_EnergyRocketLauncher_4`| 1192 | |Plasma Cannon Schematic 4 +4|`Blueprint_EnergyRocketLauncher_5`| 1193 | |Semi-Auto Shotgun Schematic 1 +1|`Blueprint_SemiAutoShotgun_2`| 1194 | |Semi-Auto Shotgun Schematic 2 +2|`Blueprint_SemiAutoShotgun_3`| 1195 | |Semi-Auto Shotgun Schematic 3 +3|`Blueprint_SemiAutoShotgun_4`| 1196 | |Semi-Auto Shotgun Schematic 4 +4|`Blueprint_SemiAutoShotgun_5`| 1197 | |Old Revolver Schematic 1 +1|`Blueprint_OldRevolver_2`| 1198 | |Old Revolver Schematic 2 +2|`Blueprint_OldRevolver_3`| 1199 | |Old Revolver Schematic 3 +3|`Blueprint_OldRevolver_4`| 1200 | |Old Revolver Schematic 4 +4|`Blueprint_OldRevolver_5`| 1201 | |Makeshift Assault Rifle Schematic 1 +1|`Blueprint_MakeshiftAssaultRifle_2`| 1202 | |Makeshift Assault Rifle Schematic 2 +2|`Blueprint_MakeshiftAssaultRifle_3`| 1203 | |Makeshift Assault Rifle Schematic 3 +3|`Blueprint_MakeshiftAssaultRifle_4`| 1204 | |Makeshift Assault Rifle Schematic 4 +4|`Blueprint_MakeshiftAssaultRifle_5`| 1205 | |Semi-Auto Rifle Schematic 1 +1|`Blueprint_SemiAutoRifle_2`| 1206 | |Semi-Auto Rifle Schematic 2 +2|`Blueprint_SemiAutoRifle_3`| 1207 | |Semi-Auto Rifle Schematic 3 +3|`Blueprint_SemiAutoRifle_4`| 1208 | |Semi-Auto Rifle Schematic 4 +4|`Blueprint_SemiAutoRifle_5`| 1209 | |Makeshift SMG Schematic 1 +1|`Blueprint_MakeshiftSubmachineGun_2`| 1210 | |Makeshift SMG Schematic 2 +2|`Blueprint_MakeshiftSubmachineGun_3`| 1211 | |Makeshift SMG Schematic 3 +3|`Blueprint_MakeshiftSubmachineGun_4`| 1212 | |Makeshift SMG Schematic 4 +4|`Blueprint_MakeshiftSubmachineGun_5`| 1213 | |SMG Schematic 1 +1|`Blueprint_SubmachineGun_2`| 1214 | |SMG Schematic 2 +2|`Blueprint_SubmachineGun_3`| 1215 | |SMG Schematic 3 +3|`Blueprint_SubmachineGun_4`| 1216 | |SMG Schematic 4 +4|`Blueprint_SubmachineGun_5`| 1217 | |Makeshift Shotgun Schematic 1 +1|`Blueprint_MakeshiftShotgun_2`| 1218 | |Makeshift Shotgun Schematic 2 +2|`Blueprint_MakeshiftShotgun_3`| 1219 | |Makeshift Shotgun Schematic 3 +3|`Blueprint_MakeshiftShotgun_4`| 1220 | |Makeshift Shotgun Schematic 4 +4|`Blueprint_MakeshiftShotgun_5`| 1221 | |Unknown Item (TEST_BossDefeatReward)|`TEST_BossDefeatReward`| 1222 | |Chillet Bounty Token|`BossDefeatReward_WeaselDragon`| 1223 | |Sweepa Bounty Token|`BossDefeatReward_MopKing`| 1224 | |Gumoss Bounty Token|`BossDefeatReward_PlantSlime`| 1225 | |Dumud Bounty Token|`BossDefeatReward_LazyCatfish`| 1226 | |Penking Bounty Token|`BossDefeatReward_CaptainPenguin`| 1227 | |Azurobe Bounty Token|`BossDefeatReward_BlueDragon`| 1228 | |Grintale Bounty Token|`BossDefeatReward_NaughtyCat`| 1229 | |Nitewing Bounty Token|`BossDefeatReward_HawkBird`| 1230 | |Quivern Bounty Token|`BossDefeatReward_SkyDragon`| 1231 | |Felbat Bounty Token|`BossDefeatReward_CatVampire`| 1232 | |Kingpaca Bounty Token|`BossDefeatReward_KingAlpaca`| 1233 | |Broncherry Bounty Token|`BossDefeatReward_SakuraSaurus`| 1234 | |Katress Bounty Token|`BossDefeatReward_CatMage`| 1235 | |Bushi Bounty Token|`BossDefeatReward_Ronin`| 1236 | |Fenglope Bounty Token|`BossDefeatReward_FengyunDeeper`| 1237 | |Petallia Bounty Token|`BossDefeatReward_FlowerDoll`| 1238 | |Beakon Bounty Token|`BossDefeatReward_ThunderBird`| 1239 | |Warsect Bounty Token|`BossDefeatReward_HerculesBeetle`| 1240 | |Broncherry Aqua Bounty Token|`BossDefeatReward_SakuraSaurus_Water`| 1241 | |Elphidran Bounty Token|`BossDefeatReward_FairyDragon`| 1242 | |Relaxaurus Bounty Token|`BossDefeatReward_LazyDragon_Electric`| 1243 | |Univolt Bounty Token|`BossDefeatReward_Kirin`| 1244 | |Elizabee Bounty Token|`BossDefeatReward_QueenBee`| 1245 | |Mossanda Lux Bounty Token|`BossDefeatReward_GrassPanda_Electric`| 1246 | |Lunaris Bounty Token|`BossDefeatReward_Mutant`| 1247 | |Verdash Bounty Token|`BossDefeatReward_GrassRabbitMan`| 1248 | |Wumpo Botan Bounty Token|`BossDefeatReward_Yeti_Grass`| 1249 | |Mammorest Bounty Token|`BossDefeatReward_GrassMammoth`| 1250 | |Vaelet Bounty Token|`BossDefeatReward_VioletFairy`| 1251 | |Sibelyx Bounty Token|`BossDefeatReward_WhiteMoth`| 1252 | |Menasting Bounty Token|`BossDefeatReward_DarkScorpion`| 1253 | |Suzaku Bounty Token|`BossDefeatReward_Suzaku`| 1254 | |Jormuntide Bounty Token|`BossDefeatReward_Umihebi`| 1255 | |Ice Kingpaca Bounty Token|`BossDefeatReward_KingAlpaca_Ice`| 1256 | |Dinossom Lux Bounty Token|`BossDefeatReward_FlowerDinosaur_Electric`| 1257 | |Anubis Bounty Token|`BossDefeatReward_Anubis`| 1258 | |Astegon Bounty Token|`BossDefeatReward_BlackMetalDragon`| 1259 | |Blazamut Bounty Token|`BossDefeatReward_KingBahamut`| 1260 | |Lyleen Noct Bounty Token|`BossDefeatReward_LilyQueen_Dark`| 1261 | |Menasting Terra Bounty Token|`BossDefeatReward_DarkScorpion_Ground`| 1262 | |Knocklem Bounty Token|`BossDefeatReward_WingGolem`| 1263 | |Splatterina Bounty Token|`BossDefeatReward_GrimGirl`| 1264 | |Azurmane Bounty Token|`BossDefeatReward_BlueThunderHorse`| 1265 | |Kitsun Noct Bounty Token|`BossDefeatReward_AmaterasuWolf_Dark`| 1266 | |Fenglope Lux Bounty Token|`BossDefeatReward_FengyunDeeper_Electric`| 1267 | |Celesdir Bounty Token|`BossDefeatReward_WhiteDeer`| 1268 | |Silvegis Bounty Token|`BossDefeatReward_WhiteShieldDragon`| 1269 | |Faleris Aqua Bounty Token|`BossDefeatReward_Horus_Water`| 1270 | |Jetragon Bounty Token|`BossDefeatReward_JetDragon`| 1271 | |Frostallion Bounty Token|`BossDefeatReward_IceHorse`| 1272 | |Twin Knights Bounty Token|`BossDefeatReward_SaintCentaur`| 1273 | |Xenolord Saddle|`SkillUnlock_DarkMechaDragon`| 1274 | |Starryon Saddle|`SkillUnlock_NightBlueHorse`| 1275 | |Silvegis Saddle|`SkillUnlock_WhiteShieldDragon`| 1276 | |Celesdir Saddle|`SkillUnlock_WhiteDeer`| 1277 | |Tarantriss Saddle|`SkillUnlock_PurpleSpider`| 1278 | |Azurmane Saddle|`SkillUnlock_BlueThunderHorse`| 1279 | |Bastigor's Hammer|`SkillUnlock_SnowTigerBeastman`| 1280 | |Kitsun Noct Saddle|`SkillUnlock_AmaterasuWolf_Dark`| 1281 | |Fenglope Lux Saddle|`SkillUnlock_FengyunDeeper_Electric`| 1282 | |Faleris Aqua Saddle|`SkillUnlock_Horus_Water`| 1283 | |Smokie's Harness|`SkillUnlock_BlackPuppy`| 1284 | |Foxparks Cryst's Harness|`SkillUnlock_Kitsunebi_Ice`| 1285 | |Dazzi Noct's Necklace|`SkillUnlock_RaijinDaughter_Water`| 1286 | |Hexolite Quartz|`RainbowCrystal`| 1287 | |Advanced Bow Schematic 1 +1|`Blueprint_SFBow_2`| 1288 | |Advanced Bow Schematic 2 +2|`Blueprint_SFBow_3`| 1289 | |Advanced Bow Schematic 3 +3|`Blueprint_SFBow_4`| 1290 | |Advanced Bow Schematic 4 +4|`Blueprint_SFBow_5`| 1291 | |Smokie Bounty Token|`BossDefeatReward_BlackPuppy`| 1292 | |Nitemary Bounty Token|`BossDefeatReward_GhostRabbit`| 1293 | |Starryon Bounty Token|`BossDefeatReward_NightBlueHorse`| 1294 | |Prunelia Bounty Token|`BossDefeatReward_BlueberryFairy`| 1295 | |Nyafia Bounty Token|`BossDefeatReward_BadCatgirl`| 1296 | |Gildane Bounty Token|`BossDefeatReward_GoldenHorse`| 1297 | |Omascul Bounty Token|`BossDefeatReward_MysteryMask`| 1298 | |Tarantris Bounty Token|`BossDefeatReward_PurpleSpider`| 1299 | |Frostallion Noct Bounty Token|`BossDefeatReward_IceHorse_Dark`| 1300 | |Compound Bow Schematic 1 +1|`Blueprint_CompoundBow_2`| 1301 | |Compound Bow Schematic 2 +2|`Blueprint_CompoundBow_3`| 1302 | |Compound Bow Schematic 3 +3|`Blueprint_CompoundBow_4`| 1303 | |Compound Bow Schematic 4 +4|`Blueprint_CompoundBow_5`| 1304 | |Foxparks Cryst Bounty Token|`BossDefeatReward_Kitsunebi_Ice`| 1305 | |Dazzi Noct Bounty Token|`BossDefeatReward_RaijinDaughter_Water`| 1306 | |Cryolinx Terra Bounty Token|`BossDefeatReward_WhiteTiger_Ground`| 1307 | |Caprity Noct Bounty Token|`BossDefeatReward_BerryGoat_Dark`| 1308 | |Loupmoon Cryst Bounty Token|`BossDefeatReward_Werewolf_Ice`| 1309 | |Ribbuny Botan Bounty Token|`BossDefeatReward_PinkRabbit_Grass`| 1310 | |Warsect Terra Bounty Token|`BossDefeatReward_HerculesBeetle_Ground`| 1311 | |Assault Rifle|`AssaultRifle_Default1`| 1312 | |Stone Axe|`Axe_Tier_00`| 1313 | |Metal Axe|`Axe_Tier_01`| 1314 | |Refined Metal Axe +1|`Axe_Tier_02`| 1315 | |Axe4 +2|`Axe_Tier_03`| 1316 | |Metal Detector|`MetalDetector`| 1317 | |Wooden Club|`Bat`| 1318 | |Bat|`Bat2`| 1319 | |Meat Cleaver|`MeatCutterKnife`| 1320 | |Stun Baton|`ElecBaton`| 1321 | |Crossbow|`BowGun`| 1322 | |Double-Barreled Shotgun|`DoubleBarrelShotgun`| 1323 | |Handgun|`HandGun_Default`| 1324 | |Decal Gun 1|`DecalGun_1`| 1325 | |Decal Gun 2 +1|`DecalGun_2`| 1326 | |Decal Gun 3 +2|`DecalGun_3`| 1327 | |Decal Gun 4 +3|`DecalGun_4`| 1328 | |Decal Gun 5 +4|`DecalGun_5`| 1329 | |Homing Sphere Launcher|`HomingSphereLauncher`| 1330 | |Laser Rifle|`LaserRifle`| 1331 | |Rocket Launcher|`Launcher_Default`| 1332 | |Pal Sphere|`PalSphere`| 1333 | |Mega Sphere|`PalSphere_Mega`| 1334 | |Giga Sphere|`PalSphere_Giga`| 1335 | |Hyper Sphere|`PalSphere_Tera`| 1336 | |Ultra Sphere|`PalSphere_Master`| 1337 | |Legendary Sphere|`PalSphere_Legend`| 1338 | |Radar Sphere|`PalSphere_Robbery`| 1339 | |Pal Sphere|`PalSphere_Debug`| 1340 | |Stone Pickaxe|`Pickaxe_Tier_00`| 1341 | |Metal Pickaxe|`Pickaxe_Tier_01`| 1342 | |Refined Metal Pickaxe +1|`Pickaxe_Tier_02`| 1343 | |Pump-Action Shotgun|`PumpActionShotgun`| 1344 | |Single-Shot Rifle|`SingleShotRifle`| 1345 | |Scatter Sphere Launcher|`SphereLauncher`| 1346 | |Single-Shot Sphere Launcher|`SphereLauncher_Once`| 1347 | |Sword|`Sword`| 1348 | |Frag Grenade|`FragGrenade`| 1349 | |Incendiary Grenade|`FragGrenade_Fire`| 1350 | |Shock Grenade|`FragGrenade_Elec`| 1351 | |Ice Grenade|`FragGrenade_Ice`| 1352 | |Old Bow|`WeakerBow`| 1353 | |Poison Bow|`Bow_Poison`| 1354 | |Fire Bow|`Bow_Fire`| 1355 | |Poison Arrow Crossbow|`BowGun_Poison`| 1356 | |Fire Arrow Crossbow|`BowGun_Fire`| 1357 | |Three Shot Bow|`Bow_Triple`| 1358 | |Five Shot Bow|`Bow_Fifth`| 1359 | |Fishing Rod_Old|`FishingRod_Old`| 1360 | |Fishing Rod_Good|`FishingRod_Good`| 1361 | |Fishing Rod_Super|`FishingRod_Super`| 1362 | |Fishing Rod_Legendary|`FishingRod_Legendary`| 1363 | |Hand-Held Torch|`Torch`| 1364 | |Makeshift Handgun|`MakeshiftHandgun`| 1365 | |Stone Spear|`Spear`| 1366 | |Metal Spear +1|`Spear_2`| 1367 | |Refined Metal Spear +2|`Spear_3`| 1368 | |Elizabee's Staff|`Spear_QueenBee`| 1369 | |Beegarde's Spear|`Spear_SoldierBee`| 1370 | |Lily's Spear|`Spear_ForestBoss`| 1371 | |Grappling Gun|`GrapplingGun`| 1372 | |Mega Grappling Gun|`GrapplingGun2`| 1373 | |Giga Grappling Gun|`GrapplingGun3`| 1374 | |Hyper Grappling Gun|`GrapplingGun4`| 1375 | |Musket|`Musket`| 1376 | |Old Bow +1|`WeakerBow_2`| 1377 | |Old Bow +2|`WeakerBow_3`| 1378 | |Old Bow +3|`WeakerBow_4`| 1379 | |Old Bow +4|`WeakerBow_5`| 1380 | |Crossbow +1|`BowGun_2`| 1381 | |Crossbow +2|`BowGun_3`| 1382 | |Crossbow +3|`BowGun_4`| 1383 | |Crossbow +4|`BowGun_5`| 1384 | |Assault Rifle|`AssaultRifle_Default2`| 1385 | |Assault Rifle|`AssaultRifle_Default3`| 1386 | |Assault Rifle|`AssaultRifle_Default4`| 1387 | |Assault Rifle|`AssaultRifle_Default5`| 1388 | |Pump-Action Shotgun +1|`PumpActionShotgun_2`| 1389 | |Pump-Action Shotgun +2|`PumpActionShotgun_3`| 1390 | |Pump-Action Shotgun +3|`PumpActionShotgun_4`| 1391 | |Pump-Action Shotgun +4|`PumpActionShotgun_5`| 1392 | |Handgun +1|`HandGun_Default_2`| 1393 | |Handgun +2|`HandGun_Default_3`| 1394 | |Handgun +3|`HandGun_Default_4`| 1395 | |Handgun +4|`HandGun_Default_5`| 1396 | |Rocket Launcher +1|`Launcher_Default_2`| 1397 | |Rocket Launcher +2|`Launcher_Default_3`| 1398 | |Rocket Launcher +3|`Launcher_Default_4`| 1399 | |Rocket Launcher +4|`Launcher_Default_5`| 1400 | |Musket +1|`Musket_2`| 1401 | |Musket +2|`Musket_3`| 1402 | |Musket +3|`Musket_4`| 1403 | |Musket +4|`Musket_5`| 1404 | |Double-Barreled Shotgun +1|`DoubleBarrelShotgun_2`| 1405 | |Double-Barreled Shotgun +2|`DoubleBarrelShotgun_3`| 1406 | |Double-Barreled Shotgun +3|`DoubleBarrelShotgun_4`| 1407 | |Double-Barreled Shotgun +4|`DoubleBarrelShotgun_5`| 1408 | |Single-Shot Rifle +1|`SingleShotRifle_2`| 1409 | |Single-Shot Rifle +2|`SingleShotRifle_3`| 1410 | |Single-Shot Rifle +3|`SingleShotRifle_4`| 1411 | |Single-Shot Rifle +4|`SingleShotRifle_5`| 1412 | |Gatling Gun|`GatlingGun`| 1413 | |Flamethrower|`FlameThrower`| 1414 | |Grenade Launcher|`GrenadeLauncher`| 1415 | |Guided Missile Launcher|`GuidedMissileLauncher`| 1416 | |Multi Guided Missile Launcher|`MultiGuidedMissileLauncher`| 1417 | |Laser Gatling Gun|`LaserGatlingGun`| 1418 | |Ultimate Sphere|`PalSphere_Ultimate`| 1419 | |Frag Grenade Mk2|`FragGrenade_Super`| 1420 | |Makeshift Handgun +1|`MakeshiftHandgun_2`| 1421 | |Makeshift Handgun +2|`MakeshiftHandgun_3`| 1422 | |Makeshift Handgun +3|`MakeshiftHandgun_4`| 1423 | |Makeshift Handgun +4|`MakeshiftHandgun_5`| 1424 | |Laser Rifle +1|`LaserRifle_2`| 1425 | |Laser Rifle +2|`LaserRifle_3`| 1426 | |Laser Rifle +3|`LaserRifle_4`| 1427 | |Laser Rifle +4|`LaserRifle_5`| 1428 | |Flamethrower +1|`FlameThrower_2`| 1429 | |Flamethrower +2|`FlameThrower_3`| 1430 | |Flamethrower +3|`FlameThrower_4`| 1431 | |Flamethrower +4|`FlameThrower_5`| 1432 | |Grenade Launcher +1|`GrenadeLauncher_2`| 1433 | |Grenade Launcher +2|`GrenadeLauncher_3`| 1434 | |Grenade Launcher +3|`GrenadeLauncher_4`| 1435 | |Grenade Launcher +4|`GrenadeLauncher_5`| 1436 | |Guided Missile Launcher +1|`GuidedMissileLauncher_2`| 1437 | |Guided Missile Launcher +2|`GuidedMissileLauncher_3`| 1438 | |Guided Missile Launcher +3|`GuidedMissileLauncher_4`| 1439 | |Guided Missile Launcher +4|`GuidedMissileLauncher_5`| 1440 | |Multi Guided Missile Launcher +1|`MultiGuidedMissileLauncher_2`| 1441 | |Multi Guided Missile Launcher +2|`MultiGuidedMissileLauncher_3`| 1442 | |Multi Guided Missile Launcher +3|`MultiGuidedMissileLauncher_4`| 1443 | |Multi Guided Missile Launcher +4|`MultiGuidedMissileLauncher_5`| 1444 | |Gatling Gun +1|`GatlingGun_2`| 1445 | |Gatling Gun +2|`GatlingGun_3`| 1446 | |Gatling Gun +3|`GatlingGun_4`| 1447 | |Gatling Gun +4|`GatlingGun_5`| 1448 | |Meteor Launcher|`Launcher_Meteor`| 1449 | |Dark Grenade|`FragGrenade_Dark`| 1450 | |Dragon Grenade|`FragGrenade_Dragon`| 1451 | |Ground Grenade|`FragGrenade_Ground`| 1452 | |Grass Grenade|`FragGrenade_Leaf`| 1453 | |Water Grenade|`FragGrenade_Water`| 1454 | |Katana|`Katana`| 1455 | |Beam Sword|`BeamSword`| 1456 | |Semi-Auto Shotgun|`SemiAutoShotgun`| 1457 | |Plasma Cannon|`EnergyRocketLauncher`| 1458 | |Poison Arrow Crossbow +1|`BowGun_Poison_2`| 1459 | |Poison Arrow Crossbow +2|`BowGun_Poison_3`| 1460 | |Poison Arrow Crossbow +3|`BowGun_Poison_4`| 1461 | |Poison Arrow Crossbow +4|`BowGun_Poison_5`| 1462 | |Fire Arrow Crossbow +1|`BowGun_Fire_2`| 1463 | |Fire Arrow Crossbow +2|`BowGun_Fire_3`| 1464 | |Fire Arrow Crossbow +3|`BowGun_Fire_4`| 1465 | |Fire Arrow Crossbow +4|`BowGun_Fire_5`| 1466 | |Old Revolver|`OldRevolver`| 1467 | |Pal Metal Pickaxe|`Pickaxe_Steal`| 1468 | |Pal Metal Axe|`Axe_Steal`| 1469 | |Makeshift Assault Rifle|`MakeshiftAssaultRifle`| 1470 | |Semi-Auto Rifle|`SemiAutoRifle`| 1471 | |Makeshift SMG|`MakeshiftSubmachineGun`| 1472 | |SMG|`SubmachineGun`| 1473 | |Makeshift Shotgun|`MakeshiftShotgun`| 1474 | |Laser Gatling Gun +1|`LaserGatlingGun_2`| 1475 | |Laser Gatling Gun +2|`LaserGatlingGun_3`| 1476 | |Laser Gatling Gun +3|`LaserGatlingGun_4`| 1477 | |Laser Gatling Gun +4|`LaserGatlingGun_5`| 1478 | |Plasma Cannon +1|`EnergyRocketLauncher_2`| 1479 | |Plasma Cannon +2|`EnergyRocketLauncher_3`| 1480 | |Plasma Cannon +3|`EnergyRocketLauncher_4`| 1481 | |Plasma Cannon +4|`EnergyRocketLauncher_5`| 1482 | |Exotic Sphere|`PalSphere_Exotic`| 1483 | |Compound Bow|`CompoundBow`| 1484 | |Advanced Bow|`SFBow`| 1485 | |Semi-Auto Shotgun +1|`SemiAutoShotgun_2`| 1486 | |Semi-Auto Shotgun +2|`SemiAutoShotgun_3`| 1487 | |Semi-Auto Shotgun +3|`SemiAutoShotgun_4`| 1488 | |Semi-Auto Shotgun +4|`SemiAutoShotgun_5`| 1489 | |Old Revolver +1|`OldRevolver_2`| 1490 | |Old Revolver +2|`OldRevolver_3`| 1491 | |Old Revolver +3|`OldRevolver_4`| 1492 | |Old Revolver +4|`OldRevolver_5`| 1493 | |Makeshift Assault Rifle +1|`MakeshiftAssaultRifle_2`| 1494 | |Makeshift Assault Rifle +2|`MakeshiftAssaultRifle_3`| 1495 | |Makeshift Assault Rifle +3|`MakeshiftAssaultRifle_4`| 1496 | |Makeshift Assault Rifle +4|`MakeshiftAssaultRifle_5`| 1497 | |Semi-Auto Rifle +1|`SemiAutoRifle_2`| 1498 | |Semi-Auto Rifle +2|`SemiAutoRifle_3`| 1499 | |Semi-Auto Rifle +3|`SemiAutoRifle_4`| 1500 | |Semi-Auto Rifle +4|`SemiAutoRifle_5`| 1501 | |Makeshift SMG +1|`MakeshiftSubmachineGun_2`| 1502 | |Makeshift SMG +2|`MakeshiftSubmachineGun_3`| 1503 | |Makeshift SMG +3|`MakeshiftSubmachineGun_4`| 1504 | |Makeshift SMG +4|`MakeshiftSubmachineGun_5`| 1505 | |SMG +1|`SubmachineGun_2`| 1506 | |SMG +2|`SubmachineGun_3`| 1507 | |SMG +3|`SubmachineGun_4`| 1508 | |SMG +4|`SubmachineGun_5`| 1509 | |Makeshift Shotgun +1|`MakeshiftShotgun_2`| 1510 | |Makeshift Shotgun +2|`MakeshiftShotgun_3`| 1511 | |Makeshift Shotgun +3|`MakeshiftShotgun_4`| 1512 | |Makeshift Shotgun +4|`MakeshiftShotgun_5`| 1513 | |Meowmere|`YakushimaBlade`| 1514 | |Advanced Bow +1|`SFBow_2`| 1515 | |Advanced Bow +2|`SFBow_3`| 1516 | |Advanced Bow +3|`SFBow_4`| 1517 | |Advanced Bow +4|`SFBow_5`| 1518 | |Compound Bow +1|`CompoundBow_2`| 1519 | |Compound Bow +2|`CompoundBow_3`| 1520 | |Compound Bow +3|`CompoundBow_4`| 1521 | |Compound Bow +4|`CompoundBow_5`| 1522 | |Unknown Item (FishingRod_Test)|`FishingRod_Test`| -------------------------------------------------------------------------------- /Wiki/Data Lists/Pals.md: -------------------------------------------------------------------------------- 1 | ### [<<<](README.md) Data Lists 2 | 3 | #### English / [简体中文](./Pals_ZH_CN.md) 4 | 5 | # Pals 6 | A list of pals in Palworld, including their asset names for spawning purposes. 7 | 8 | Updated for game version `v0.4.14` 9 | 10 | |Name|Asset Name| 11 | |----|-------| 12 | |Melpaca|`Alpaca`| 13 | |Melpaca (Boss)|`BOSS_Alpaca`| 14 | |Kitsun|`AmaterasuWolf`| 15 | |Kitsun (Boss)|`BOSS_AmaterasuWolf`| 16 | |Kitsun (Predator)|`PREDATOR_AmaterasuWolf`| 17 | |Kitsun Noct|`AmaterasuWolf_Dark`| 18 | |Kitsun Noct (Boss)|`BOSS_AmaterasuWolf_Dark`| 19 | |Anubis|`Anubis`| 20 | |Anubis (Boss)|`Boss_Anubis`| 21 | |Nyafia|`BadCatgirl`| 22 | |Nyafia (Boss)|`BOSS_BadCatgirl`| 23 | |Incineram|`Baphomet`| 24 | |Incineram (Boss)|`BOSS_Baphomet`| 25 | |Incineram Noct|`Baphomet_Dark`| 26 | |Incineram Noct (Boss)|`BOSS_Baphomet_Dark`| 27 | |Incineram Noct (Predator)|`PREDATOR_Baphomet_Dark`| 28 | |Incineram Noct|`Baphomet_Dark_Oilrig`| 29 | |Mau|`Bastet`| 30 | |Mau (Boss)|`BOSS_Bastet`| 31 | |Mau Cryst|`Bastet_Ice`| 32 | |Mau Cryst (Boss)|`BOSS_Bastet_Ice`| 33 | |en_text|`BeardedDragon`| 34 | |en_text (Boss)|`BOSS_BeardedDragon`| 35 | |Caprity|`BerryGoat`| 36 | |Caprity (Boss)|`BOSS_BerryGoat`| 37 | |Caprity Noct|`BerryGoat_Dark`| 38 | |Caprity Noct (Boss)|`BOSS_BerryGoat_Dark`| 39 | |Vanwyrm|`BirdDragon`| 40 | |Vanwyrm (Boss)|`BOSS_BirdDragon`| 41 | |Vanwyrm (Predator)|`PREDATOR_BirdDragon`| 42 | |Vanwyrm Cryst|`BirdDragon_Ice`| 43 | |Vanwyrm Cryst (Boss)|`BOSS_BirdDragon_Ice`| 44 | |Necromus|`BlackCentaur`| 45 | |Necromus (Boss)|`BOSS_BlackCentaur`| 46 | |Dragostrophe|`BlackFurDragon`| 47 | |Dragostrophe (Boss)|`BOSS_BlackFurDragon`| 48 | |Shadowbeak|`BlackGriffon`| 49 | |Shadowbeak (Boss)|`BOSS_BlackGriffon`| 50 | |Shadowbeak (Gym)|`GYM_BlackGriffon`| 51 | |Shadowbeak (Gym)|`GYM_BlackGriffon_2`| 52 | |Shadowbeak (Gym)|`GYM_BlackGriffon_2_Avatar`| 53 | |Astegon|`BlackMetalDragon`| 54 | |Astegon (Boss)|`BOSS_BlackMetalDragon`| 55 | |Smokie|`BlackPuppy`| 56 | |Smokie (Boss)|`BOSS_BlackPuppy`| 57 | |Prunelia|`BlueberryFairy`| 58 | |Prunelia (Boss)|`BOSS_BlueberryFairy`| 59 | |Azurobe|`BlueDragon`| 60 | |Azurobe (Boss)|`BOSS_BlueDragon`| 61 | |Fuack|`BluePlatypus`| 62 | |Fuack (Boss)|`BOSS_BluePlatypus`| 63 | |Azurmane|`BlueThunderHorse`| 64 | |Azurmane (Boss)|`BOSS_BlueThunderHorse`| 65 | |Rushoar|`Boar`| 66 | |Rushoar (Boss)|`BOSS_Boar`| 67 | |en_text (Boss)|`BOSS_BrownRabbit`| 68 | |en_text|`BrownRabbit`| 69 | |Unknown Pal (CactusDoll) (Boss)|`BOSS_CactusDoll`| 70 | |Unknown Pal (CactusDoll)|`CactusDoll`| 71 | |Sootseer (Boss)|`BOSS_CandleGhost`| 72 | |Sootseer|`CandleGhost`| 73 | |Sootseer (Predator)|`PREDATOR_CandleGhost`| 74 | |Penking (Boss)|`BOSS_CaptainPenguin`| 75 | |Penking|`CaptainPenguin`| 76 | |Lifmunk (Boss)|`BOSS_Carbunclo`| 77 | |Lifmunk|`Carbunclo`| 78 | |Tombat (Boss)|`BOSS_CatBat`| 79 | |Tombat|`CatBat`| 80 | |Katress (Boss)|`BOSS_CatMage`| 81 | |Katress|`CatMage`| 82 | |Katress Ignis (Boss)|`BOSS_CatMage_Fire`| 83 | |Katress Ignis|`CatMage_Fire`| 84 | |Felbat (Boss)|`BOSS_CatVampire`| 85 | |Felbat|`CatVampire`| 86 | |Chikipi (Boss)|`BOSS_ChickenPal`| 87 | |Chikipi|`ChickenPal`| 88 | |Unknown Pal (CloverFairy) (Boss)|`BOSS_CloverFairy`| 89 | |Unknown Pal (CloverFairy)|`CloverFairy`| 90 | |Unknown Pal (ClownRabbit) (Boss)|`BOSS_ClownRabbit`| 91 | |Unknown Pal (ClownRabbit)|`ClownRabbit`| 92 | |Tocotoco (Boss)|`BOSS_ColorfulBird`| 93 | |Tocotoco|`ColorfulBird`| 94 | |Mozzarina (Boss)|`BOSS_CowPal`| 95 | |Mozzarina|`CowPal`| 96 | |Cinnamoth (Boss)|`BOSS_CuteButterfly`| 97 | |Cinnamoth|`CuteButterfly`| 98 | |Vixy (Boss)|`BOSS_CuteFox`| 99 | |Vixy|`CuteFox`| 100 | |Fuddler (Boss)|`BOSS_CuteMole`| 101 | |Fuddler|`CuteMole`| 102 | |Xenovader (Boss)|`BOSS_DarkAlien`| 103 | |Xenovader|`DarkAlien`| 104 | |Xenovader (Summon)|`SUMMON_DarkAlien`| 105 | |Xenovader (Summon)|`SUMMON_DarkAlien_MAX`| 106 | |Xenovader|`DarkAlien_Oilrig`| 107 | |Cawgnito (Boss)|`BOSS_DarkCrow`| 108 | |Cawgnito|`DarkCrow`| 109 | |Xenolord (Boss)|`BOSS_DarkMechaDragon`| 110 | |Xenolord|`DarkMechaDragon`| 111 | |Xenolord (Raid)|`RAID_DarkMechaDragon`| 112 | |Xenolord (Raid)|`RAID_DarkMechaDragon_2`| 113 | |en_text (Boss)|`BOSS_DarkMutant`| 114 | |en_text|`DarkMutant`| 115 | |Menasting (Boss)|`BOSS_DarkScorpion`| 116 | |Menasting|`DarkScorpion`| 117 | |Menasting Terra (Boss)|`BOSS_DarkScorpion_Ground`| 118 | |Menasting Terra|`DarkScorpion_Ground`| 119 | |Eikthyrdeer (Boss)|`BOSS_Deer`| 120 | |Eikthyrdeer|`Deer`| 121 | |Eikthyrdeer Terra (Boss)|`BOSS_Deer_Ground`| 122 | |Eikthyrdeer Terra|`Deer_Ground`| 123 | |Daedream (Boss)|`BOSS_DreamDemon`| 124 | |Daedream|`DreamDemon`| 125 | |Digtoise (Boss)|`BOSS_DrillGame`| 126 | |Digtoise|`DrillGame`| 127 | |Digtoise (Predator)|`PREDATOR_DrillGame`| 128 | |Galeclaw (Boss)|`BOSS_Eagle`| 129 | |Galeclaw|`Eagle`| 130 | |Sparkit (Boss)|`BOSS_ElecCat`| 131 | |Sparkit|`ElecCat`| 132 | |Boltmane (Boss)|`BOSS_ElecLion`| 133 | |Boltmane|`ElecLion`| 134 | |Unknown Pal (ElecLizard) (Boss)|`BOSS_ElecLizard`| 135 | |Unknown Pal (ElecLizard)|`ElecLizard`| 136 | |Grizzbolt (Boss)|`BOSS_ElecPanda`| 137 | |Grizzbolt|`ElecPanda`| 138 | |Grizzbolt (Gym)|`GYM_ElecPanda`| 139 | |Grizzbolt (Gym)|`GYM_ElecPanda_2`| 140 | |Unknown Pal (ElecPomeranian) (Boss)|`BOSS_ElecPomeranian`| 141 | |Unknown Pal (ElecPomeranian)|`ElecPomeranian`| 142 | |Elphidran (Boss)|`BOSS_FairyDragon`| 143 | |Elphidran|`FairyDragon`| 144 | |Elphidran (Predator)|`PREDATOR_FairyDragon`| 145 | |Elphidran Aqua (Boss)|`BOSS_FairyDragon_Water`| 146 | |Elphidran Aqua|`FairyDragon_Water`| 147 | |Dazemu (Boss)|`BOSS_FeatherOstrich`| 148 | |Dazemu|`FeatherOstrich`| 149 | |Dazemu (Predator)|`PREDATOR_FeatherOstrich`| 150 | |Fenglope (Boss)|`BOSS_FengyunDeeper`| 151 | |Fenglope|`FengyunDeeper`| 152 | |Fenglope Lux (Boss)|`BOSS_FengyunDeeper_Electric`| 153 | |Fenglope Lux|`FengyunDeeper_Electric`| 154 | |Pyrin (Boss)|`BOSS_FireKirin`| 155 | |Pyrin|`FireKirin`| 156 | |Pyrin Noct (Boss)|`BOSS_FireKirin_Dark`| 157 | |Pyrin Noct|`FireKirin_Dark`| 158 | |Rooby (Boss)|`BOSS_FlameBambi`| 159 | |Rooby|`FlameBambi`| 160 | |Arsox (Boss)|`BOSS_FlameBuffalo`| 161 | |Arsox|`FlameBuffalo`| 162 | |Dinossom (Boss)|`BOSS_FlowerDinosaur`| 163 | |Dinossom|`FlowerDinosaur`| 164 | |Dinossom (Predator)|`PREDATOR_FlowerDinosaur`| 165 | |Dinossom Lux (Boss)|`BOSS_FlowerDinosaur_Electric`| 166 | |Dinossom Lux|`FlowerDinosaur_Electric`| 167 | |Petallia (Boss)|`BOSS_FlowerDoll`| 168 | |Petallia|`FlowerDoll`| 169 | |Flopie (Boss)|`BOSS_FlowerRabbit`| 170 | |Flopie|`FlowerRabbit`| 171 | |Celaray (Boss)|`BOSS_FlyingManta`| 172 | |Celaray|`FlyingManta`| 173 | |Unknown Pal (FoxExorcist) (Boss)|`BOSS_FoxExorcist`| 174 | |Unknown Pal (FoxExorcist)|`FoxExorcist`| 175 | |Wixen (Boss)|`BOSS_FoxMage`| 176 | |Wixen|`FoxMage`| 177 | |Wixen Noct (Boss)|`BOSS_FoxMage_Dark`| 178 | |Wixen Noct|`FoxMage_Dark`| 179 | |Teafant (Boss)|`BOSS_Ganesha`| 180 | |Teafant|`Ganesha`| 181 | |Direhowl (Boss)|`BOSS_Garm`| 182 | |Direhowl|`Garm`| 183 | |Direhowl (Predator)|`PREDATOR_Garm`| 184 | |Unknown Pal (GhostAnglerfish) (Boss)|`BOSS_GhostAnglerfish`| 185 | |Unknown Pal (GhostAnglerfish)|`GhostAnglerfish`| 186 | |Maraith (Boss)|`BOSS_GhostBeast`| 187 | |Maraith|`GhostBeast`| 188 | |Maraith (Predator)|`PREDATOR_GhostBeast`| 189 | |Unknown Pal (GhostBlackCat) (Boss)|`BOSS_GhostBlackCat`| 190 | |Unknown Pal (GhostBlackCat)|`GhostBlackCat`| 191 | |Nitemary (Boss)|`BOSS_GhostRabbit`| 192 | |Nitemary|`GhostRabbit`| 193 | |Gildane (Boss)|`BOSS_GoldenHorse`| 194 | |Gildane|`GoldenHorse`| 195 | |Gildane (Predator)|`PREDATOR_GoldenHorse`| 196 | |Gorirat (Boss)|`BOSS_Gorilla`| 197 | |Gorirat|`Gorilla`| 198 | |Gorirat (Predator)|`PREDATOR_Gorilla`| 199 | |Gorirat Terra (Boss)|`BOSS_Gorilla_Ground`| 200 | |Gorirat Terra|`Gorilla_Ground`| 201 | |en_text (Boss)|`BOSS_GrassDragon`| 202 | |en_text|`GrassDragon`| 203 | |Unknown Pal (GrassGolem) (Boss)|`BOSS_GrassGolem`| 204 | |Unknown Pal (GrassGolem)|`GrassGolem`| 205 | |Mammorest (Boss)|`BOSS_GrassMammoth`| 206 | |Mammorest|`GrassMammoth`| 207 | |Mammorest Cryst (Boss)|`BOSS_GrassMammoth_Ice`| 208 | |Mammorest Cryst|`GrassMammoth_Ice`| 209 | |Mossanda (Boss)|`BOSS_GrassPanda`| 210 | |Mossanda|`GrassPanda`| 211 | |Mossanda (Predator)|`PREDATOR_GrassPanda`| 212 | |Mossanda Lux (Boss)|`BOSS_GrassPanda_Electric`| 213 | |Mossanda Lux|`GrassPanda_Electric`| 214 | |Verdash (Boss)|`BOSS_GrassRabbitMan`| 215 | |Verdash|`GrassRabbitMan`| 216 | |Splatterina (Boss)|`BOSS_GrimGirl`| 217 | |Splatterina|`GrimGirl`| 218 | |Splatterina (Predator)|`PREDATOR_GrimGirl`| 219 | |Yakumo (Boss)|`BOSS_GuardianDog`| 220 | |Yakumo|`GuardianDog`| 221 | |Helzephyr (Boss)|`BOSS_HadesBird`| 222 | |Helzephyr|`HadesBird`| 223 | |Helzephyr Lux (Boss)|`BOSS_HadesBird_Electric`| 224 | |Helzephyr Lux|`HadesBird_Electric`| 225 | |Helzephyr Lux (Predator)|`PREDATOR_HadesBird_Electric`| 226 | |Helzephyr|`HadesBird_Oilrig`| 227 | |Nitewing (Boss)|`BOSS_HawkBird`| 228 | |Nitewing|`HawkBird`| 229 | |Jolthog (Boss)|`BOSS_Hedgehog`| 230 | |Jolthog|`Hedgehog`| 231 | |Jolthog Cryst (Boss)|`BOSS_Hedgehog_Ice`| 232 | |Jolthog Cryst|`Hedgehog_Ice`| 233 | |Warsect (Boss)|`BOSS_HerculesBeetle`| 234 | |Warsect|`HerculesBeetle`| 235 | |Warsect Terra (Boss)|`BOSS_HerculesBeetle_Ground`| 236 | |Warsect Terra|`HerculesBeetle_Ground`| 237 | |Unknown Pal (HoodGhost) (Boss)|`BOSS_HoodGhost`| 238 | |Unknown Pal (HoodGhost)|`HoodGhost`| 239 | |Faleris (Boss)|`BOSS_Horus`| 240 | |Faleris (Gym)|`GYM_Horus`| 241 | |Faleris|`Horus`| 242 | |Faleris (Gym)|`GYM_Horus_2`| 243 | |Faleris|`Horus_Oilrig`| 244 | |Faleris Aqua (Boss)|`BOSS_Horus_Water`| 245 | |Faleris Aqua|`Horus_Water`| 246 | |Faleris Aqua (Predator)|`PREDATOR_Horus_Water`| 247 | |Unknown Pal (IceCrocodile) (Boss)|`BOSS_IceCrocodile`| 248 | |Unknown Pal (IceCrocodile)|`IceCrocodile`| 249 | |Reindrix (Boss)|`BOSS_IceDeer`| 250 | |Reindrix|`IceDeer`| 251 | |Foxcicle (Boss)|`BOSS_IceFox`| 252 | |Foxcicle|`IceFox`| 253 | |Frostallion (Boss)|`BOSS_IceHorse`| 254 | |Frostallion|`IceHorse`| 255 | |Frostallion Noct (Boss)|`BOSS_IceHorse_Dark`| 256 | |Frostallion Noct|`IceHorse_Dark`| 257 | |Unknown Pal (IceNarwhal) (Boss)|`BOSS_IceNarwhal`| 258 | |Unknown Pal (IceNarwhal)|`IceNarwhal`| 259 | |Unknown Pal (IceSeal) (Boss)|`BOSS_IceSeal`| 260 | |Unknown Pal (IceSeal)|`IceSeal`| 261 | |Unknown Pal (IceWitch) (Boss)|`BOSS_IceWitch`| 262 | |Unknown Pal (IceWitch)|`IceWitch`| 263 | |Unknown Pal (JellyfishFairy) (Boss)|`BOSS_JellyfishFairy`| 264 | |Unknown Pal (JellyfishFairy)|`JellyfishFairy`| 265 | |Unknown Pal (None) (Boss)|`BOSS_JellyfishGhost`| 266 | |Unknown Pal (None)|`JellyfishGhost`| 267 | |Jetragon (Boss)|`BOSS_JetDragon`| 268 | |Jetragon|`JetDragon`| 269 | |Kelpsea (Boss)|`BOSS_Kelpie`| 270 | |Kelpsea|`Kelpie`| 271 | |Kelpsea Ignis (Boss)|`BOSS_Kelpie_Fire`| 272 | |Kelpsea Ignis|`Kelpie_Fire`| 273 | |Croajiro (Boss)|`BOSS_KendoFrog`| 274 | |Croajiro|`KendoFrog`| 275 | |-|`KendoFrog_Dark`| 276 | |Kingpaca (Boss)|`BOSS_KingAlpaca`| 277 | |Kingpaca|`KingAlpaca`| 278 | |Kingpaca Cryst (Boss)|`BOSS_KingAlpaca_Ice`| 279 | |Kingpaca Cryst|`KingAlpaca_Ice`| 280 | |Blazamut (Boss)|`BOSS_KingBahamut`| 281 | |Blazamut|`KingBahamut`| 282 | |Blazamut Ryu (Boss)|`BOSS_KingBahamut_Dragon`| 283 | |Blazamut Ryu|`KingBahamut_Dragon`| 284 | |Blazamut Ryu (Raid)|`RAID_KingBahamut_Dragon`| 285 | |Blazamut Ryu (Raid)|`RAID_KingBahamut_Dragon_2`| 286 | |Unknown Pal (KingCrab) (Boss)|`BOSS_KingCrab`| 287 | |Unknown Pal (KingCrab)|`KingCrab`| 288 | |Unknown Pal (KingWhale) (Boss)|`BOSS_KingWhale`| 289 | |Unknown Pal (KingWhale)|`KingWhale`| 290 | |Univolt (Boss)|`BOSS_Kirin`| 291 | |Univolt|`Kirin`| 292 | |Foxparks (Boss)|`BOSS_Kitsunebi`| 293 | |Foxparks|`Kitsunebi`| 294 | |Foxparks Cryst (Boss)|`BOSS_Kitsunebi_Ice`| 295 | |Foxparks Cryst|`Kitsunebi_Ice`| 296 | |Flambelle (Boss)|`BOSS_LavaGirl`| 297 | |Flambelle|`LavaGirl`| 298 | |Dumud (Boss)|`BOSS_LazyCatfish`| 299 | |Dumud|`LazyCatfish`| 300 | |Relaxaurus (Boss)|`BOSS_LazyDragon`| 301 | |Relaxaurus|`LazyDragon`| 302 | |Relaxaurus (Predator)|`PREDATOR_LazyDragon`| 303 | |Relaxaurus Lux (Boss)|`BOSS_LazyDragon_Electric`| 304 | |Relaxaurus Lux|`LazyDragon_Electric`| 305 | |Unknown Pal (LeafMomonga) (Boss)|`BOSS_LeafMomonga`| 306 | |Unknown Pal (LeafMomonga)|`LeafMomonga`| 307 | |Lullu (Boss)|`BOSS_LeafPrincess`| 308 | |Lullu|`LeafPrincess`| 309 | |Unknown Pal (LegendDeer) (Boss)|`BOSS_LegendDeer`| 310 | |Unknown Pal (LegendDeer)|`LegendDeer`| 311 | |Lyleen (Boss)|`BOSS_LilyQueen`| 312 | |Lyleen (Gym)|`GYM_LilyQueen`| 313 | |Lyleen|`LilyQueen`| 314 | |Lyleen (Gym)|`GYM_LilyQueen_2`| 315 | |Lyleen Noct (Boss)|`BOSS_LilyQueen_Dark`| 316 | |Lyleen Noct|`LilyQueen_Dark`| 317 | |Bristla (Boss)|`BOSS_LittleBriarRose`| 318 | |Bristla|`LittleBriarRose`| 319 | |Leezpunk (Boss)|`BOSS_LizardMan`| 320 | |Leezpunk|`LizardMan`| 321 | |Leezpunk Ignis (Boss)|`BOSS_LizardMan_Fire`| 322 | |Leezpunk Ignis|`LizardMan_Fire`| 323 | |Leezpunk|`LizardMan_Oilrig`| 324 | |Unknown Pal (LongCat) (Boss)|`BOSS_LongCat`| 325 | |Unknown Pal (LongCat)|`LongCat`| 326 | |Blazehowl (Boss)|`BOSS_Manticore`| 327 | |Blazehowl|`Manticore`| 328 | |Blazehowl Noct (Boss)|`BOSS_Manticore_Dark`| 329 | |Blazehowl Noct|`Manticore_Dark`| 330 | |Blazehowl Noct (Predator)|`PREDATOR_Manticore_Dark`| 331 | |Mimog (Boss)|`BOSS_MimicDog`| 332 | |Mimog|`MimicDog`| 333 | |Tanzee (Boss)|`BOSS_Monkey`| 334 | |Tanzee|`Monkey`| 335 | |Unknown Pal (None) (Boss)|`BOSS_MoonChild`| 336 | |Unknown Pal (None)|`MoonChild`| 337 | |Selyne (Boss)|`BOSS_MoonQueen`| 338 | |Selyne (Gym)|`GYM_MoonQueen`| 339 | |Selyne|`MoonQueen`| 340 | |Selyne (Gym)|`GYM_MoonQueen_2`| 341 | |Selyne (Gym)|`GYM_MoonQueen_2_Servant`| 342 | |Swee (Boss)|`BOSS_MopBaby`| 343 | |Swee|`MopBaby`| 344 | |Sweepa (Boss)|`BOSS_MopKing`| 345 | |Sweepa|`MopKing`| 346 | |Shroomer (Boss)|`BOSS_MushroomDragon`| 347 | |Shroomer|`MushroomDragon`| 348 | |Shroomer (Predator)|`PREDATOR_MushroomDragon`| 349 | |Shroomer Noct (Boss)|`BOSS_MushroomDragon_Dark`| 350 | |Shroomer Noct|`MushroomDragon_Dark`| 351 | |Unknown Pal (MushroomLady) (Boss)|`BOSS_MushroomLady`| 352 | |Unknown Pal (MushroomLady)|`MushroomLady`| 353 | |Lunaris (Boss)|`BOSS_Mutant`| 354 | |Lunaris|`Mutant`| 355 | |Omascul (Boss)|`BOSS_MysteryMask`| 356 | |Omascul|`MysteryMask`| 357 | |Omascul (Predator)|`PREDATOR_MysteryMask`| 358 | |Grintale (Boss)|`BOSS_NaughtyCat`| 359 | |Grintale|`NaughtyCat`| 360 | |Depresso (Boss)|`BOSS_NegativeKoala`| 361 | |Depresso|`NegativeKoala`| 362 | |Killamari (Boss)|`BOSS_NegativeOctopus`| 363 | |Killamari|`NegativeOctopus`| 364 | |Starryon (Boss)|`BOSS_NightBlueHorse`| 365 | |Starryon|`NightBlueHorse`| 366 | |Starryon (Predator)|`PREDATOR_NightBlueHorse`| 367 | |Nox (Boss)|`BOSS_NightFox`| 368 | |Nox|`NightFox`| 369 | |Bellanoir (Boss)|`BOSS_NightLady`| 370 | |Bellanoir|`NightLady`| 371 | |Bellanoir (Raid)|`RAID_NightLady`| 372 | |Bellanoir Libero (Boss)|`BOSS_NightLady_Dark`| 373 | |Bellanoir Libero|`NightLady_Dark`| 374 | |Bellanoir Libero (Raid)|`RAID_NightLady_Dark`| 375 | |Bellanoir Libero (Raid)|`RAID_NightLady_Dark_2`| 376 | |Unknown Pal (OctopusGirl) (Boss)|`BOSS_OctopusGirl`| 377 | |Unknown Pal (OctopusGirl)|`OctopusGirl`| 378 | |Unknown Pal (OniGhostGirl) (Boss)|`BOSS_OniGhostGirl`| 379 | |Unknown Pal (OniGhostGirl)|`OniGhostGirl`| 380 | |Pengullet (Boss)|`BOSS_Penguin`| 381 | |Pengullet|`Penguin`| 382 | |Cattiva (Boss)|`BOSS_PinkCat`| 383 | |Cattiva|`PinkCat`| 384 | |en_text (Boss)|`BOSS_PinkKangaroo`| 385 | |en_text|`PinkKangaroo`| 386 | |Lovander (Boss)|`BOSS_PinkLizard`| 387 | |Lovander|`PinkLizard`| 388 | |Lovander (Predator)|`PREDATOR_PinkLizard`| 389 | |Ribbuny (Boss)|`BOSS_PinkRabbit`| 390 | |Ribbuny|`PinkRabbit`| 391 | |Ribbuny Botan (Boss)|`BOSS_PinkRabbit_Grass`| 392 | |Ribbuny Botan|`PinkRabbit_Grass`| 393 | |Gumoss (Boss)|`BOSS_PlantSlime`| 394 | |Gumoss|`PlantSlime`| 395 | |Gumoss (Boss)|`BOSS_PlantSlime_Flower`| 396 | |Gumoss|`PlantSlime_Flower`| 397 | |Unknown Pal (Plesiosaur) (Boss)|`BOSS_Plesiosaur`| 398 | |Unknown Pal (Plesiosaur)|`Plesiosaur`| 399 | |Unknown Pal (None) (Boss)|`BOSS_PoseidonOrca`| 400 | |Unknown Pal (None)|`PoseidonOrca`| 401 | |Tarantriss (Boss)|`BOSS_PurpleSpider`| 402 | |Tarantriss (Predator)|`PREDATOR_PurpleSpider`| 403 | |Tarantriss|`PurpleSpider`| 404 | |Unknown Pal (PyramidTurtle) (Boss)|`BOSS_PyramidTurtle`| 405 | |Unknown Pal (PyramidTurtle)|`PyramidTurtle`| 406 | |Elizabee (Boss)|`BOSS_QueenBee`| 407 | |Elizabee|`QueenBee`| 408 | |Dazzi (Boss)|`BOSS_RaijinDaughter`| 409 | |Dazzi|`RaijinDaughter`| 410 | |Dazzi Noct (Boss)|`BOSS_RaijinDaughter_Water`| 411 | |Dazzi Noct|`RaijinDaughter_Water`| 412 | |Ragnahawk (Boss)|`BOSS_RedArmorBird`| 413 | |Ragnahawk (Predator)|`PREDATOR_RedArmorBird`| 414 | |Ragnahawk|`RedArmorBird`| 415 | |Robinquill (Boss)|`BOSS_RobinHood`| 416 | |Robinquill|`RobinHood`| 417 | |Robinquill Terra (Boss)|`BOSS_RobinHood_Ground`| 418 | |Robinquill Terra|`RobinHood_Ground`| 419 | |Unknown Pal (RockBeast) (Boss)|`BOSS_RockBeast`| 420 | |Unknown Pal (RockBeast)|`RockBeast`| 421 | |Bushi (Boss)|`BOSS_Ronin`| 422 | |Bushi|`Ronin`| 423 | |Bushi Noct (Boss)|`BOSS_Ronin_Dark`| 424 | |Bushi Noct (Predator)|`PREDATOR_Ronin_Dark`| 425 | |Bushi Noct|`Ronin_Dark`| 426 | |Paladius (Boss)|`BOSS_SaintCentaur`| 427 | |Paladius|`SaintCentaur`| 428 | |Broncherry (Boss)|`BOSS_SakuraSaurus`| 429 | |Broncherry|`SakuraSaurus`| 430 | |Broncherry Aqua (Boss)|`BOSS_SakuraSaurus_Water`| 431 | |Broncherry Aqua|`SakuraSaurus_Water`| 432 | |Unknown Pal (None) (Boss)|`BOSS_SamuraiDog`| 433 | |Unknown Pal (None)|`SamuraiDog`| 434 | |Prixter (Boss)|`BOSS_ScorpionMan`| 435 | |Prixter (Predator)|`PREDATOR_ScorpionMan`| 436 | |Prixter|`ScorpionMan`| 437 | |Unknown Pal (Sekhmet) (Boss)|`BOSS_Sekhmet`| 438 | |Unknown Pal (Sekhmet)|`Sekhmet`| 439 | |Surfent (Boss)|`BOSS_Serpent`| 440 | |Surfent|`Serpent`| 441 | |Surfent Terra (Boss)|`BOSS_Serpent_Ground`| 442 | |Surfent Terra|`Serpent_Ground`| 443 | |Gobfin (Boss)|`BOSS_SharkKid`| 444 | |Gobfin|`SharkKid`| 445 | |Gobfin Ignis (Boss)|`BOSS_SharkKid_Fire`| 446 | |Gobfin Ignis|`SharkKid_Fire`| 447 | |Lamball (Boss)|`BOSS_SheepBall`| 448 | |Lamball|`SheepBall`| 449 | |Dogen (Boss)|`BOSS_SifuDog`| 450 | |Dogen (Predator)|`PREDATOR_SifuDog`| 451 | |Dogen|`SifuDog`| 452 | |Quivern (Boss)|`BOSS_SkyDragon`| 453 | |Quivern|`SkyDragon`| 454 | |Quivern Botan (Boss)|`BOSS_SkyDragon_Grass`| 455 | |Quivern Botan|`SkyDragon_Grass`| 456 | |Kikit (Boss)|`BOSS_SmallArmadillo`| 457 | |Kikit|`SmallArmadillo`| 458 | |Unknown Pal (SmallYeti) (Boss)|`BOSS_SmallYeti`| 459 | |Unknown Pal (SmallYeti)|`SmallYeti`| 460 | |Unknown Pal (SnakeGirl) (Boss)|`BOSS_SnakeGirl`| 461 | |Unknown Pal (SnakeGirl)|`SnakeGirl`| 462 | |Unknown Pal (SnowPeafowl) (Boss)|`BOSS_SnowPeafowl`| 463 | |Unknown Pal (SnowPeafowl)|`SnowPeafowl`| 464 | |Bastigor (Boss)|`BOSS_SnowTigerBeastman`| 465 | |Bastigor (Gym)|`GYM_SnowTigerBeastman`| 466 | |Bastigor|`SnowTigerBeastman`| 467 | |Bastigor (Gym)|`GYM_SnowTigerBeastman_2`| 468 | |Beegarde (Boss)|`BOSS_SoldierBee`| 469 | |Beegarde|`SoldierBee`| 470 | |Unknown Pal (StuffedShark) (Boss)|`BOSS_StuffedShark`| 471 | |Unknown Pal (StuffedShark)|`StuffedShark`| 472 | |Suzaku (Boss)|`BOSS_Suzaku`| 473 | |Suzaku|`Suzaku`| 474 | |Suzaku Aqua (Boss)|`BOSS_Suzaku_Water`| 475 | |Suzaku Aqua|`Suzaku_Water`| 476 | |Woolipop (Boss)|`BOSS_SweetsSheep`| 477 | |Woolipop|`SweetsSheep`| 478 | |Unknown Pal (None) (Boss)|`BOSS_SwordCutlassfish`| 479 | |Unknown Pal (None)|`SwordCutlassfish`| 480 | |en_text (Boss)|`BOSS_TentacleTurtle`| 481 | |en_text|`TentacleTurtle`| 482 | |Unknown Pal (ThiefBird) (Boss)|`BOSS_ThiefBird`| 483 | |Unknown Pal (ThiefBird)|`ThiefBird`| 484 | |Beakon (Boss)|`BOSS_ThunderBird`| 485 | |Beakon|`ThunderBird`| 486 | |Rayhound (Boss)|`BOSS_ThunderDog`| 487 | |Rayhound (Predator)|`PREDATOR_ThunderDog`| 488 | |Rayhound|`ThunderDog`| 489 | |Orserk (Boss)|`BOSS_ThunderDragonMan`| 490 | |Orserk (Gym)|`GYM_ThunderDragonMan`| 491 | |Orserk|`ThunderDragonMan`| 492 | |Orserk (Gym)|`GYM_ThunderDragonMan_2`| 493 | |Unknown Pal (None) (Boss)|`BOSS_ThunderFluffyBird`| 494 | |Unknown Pal (None)|`ThunderFluffyBird`| 495 | |Unknown Pal (TropicalOstrich) (Boss)|`BOSS_TropicalOstrich`| 496 | |Unknown Pal (TropicalOstrich)|`TropicalOstrich`| 497 | |Jormuntide (Boss)|`BOSS_Umihebi`| 498 | |Jormuntide|`Umihebi`| 499 | |Jormuntide Ignis (Boss)|`BOSS_Umihebi_Fire`| 500 | |Jormuntide Ignis (Predator)|`PREDATOR_Umihebi_Fire`| 501 | |Jormuntide Ignis|`Umihebi_Fire`| 502 | |Vaelet (Boss)|`BOSS_VioletFairy`| 503 | |Vaelet|`VioletFairy`| 504 | |Reptyro (Boss)|`BOSS_VolcanicMonster`| 505 | |Reptyro|`VolcanicMonster`| 506 | |Reptyro Cryst (Boss)|`BOSS_VolcanicMonster_Ice`| 507 | |Reptyro Cryst (Predator)|`PREDATOR_VolcanicMonster_Ice`| 508 | |Reptyro Cryst|`VolcanicMonster_Ice`| 509 | |en_text (Boss)|`BOSS_VolcanoDragon`| 510 | |en_text|`VolcanoDragon`| 511 | |en_text (Boss)|`BOSS_WaterLizard`| 512 | |en_text|`WaterLizard`| 513 | |Chillet (Boss)|`BOSS_WeaselDragon`| 514 | |Chillet|`WeaselDragon`| 515 | |Chillet Ignis (Boss)|`BOSS_WeaselDragon_Fire`| 516 | |Chillet Ignis|`WeaselDragon_Fire`| 517 | |Loupmoon (Boss)|`BOSS_Werewolf`| 518 | |Loupmoon|`Werewolf`| 519 | |Loupmoon Cryst (Boss)|`BOSS_Werewolf_Ice`| 520 | |Loupmoon Cryst (Predator)|`PREDATOR_Werewolf_Ice`| 521 | |Loupmoon Cryst|`Werewolf_Ice`| 522 | |Xenogard (Boss)|`BOSS_WhiteAlienDragon`| 523 | |Xenogard (Summon)|`SUMMON_WhiteAlienDragon`| 524 | |Xenogard|`WhiteAlienDragon`| 525 | |Xenogard (Summon)|`SUMMON_WhiteAlienDragon_MAX`| 526 | |Celesdir (Boss)|`BOSS_WhiteDeer`| 527 | |Celesdir|`WhiteDeer`| 528 | |Sibelyx (Boss)|`BOSS_WhiteMoth`| 529 | |Sibelyx|`WhiteMoth`| 530 | |Silvegis (Boss)|`BOSS_WhiteShieldDragon`| 531 | |Silvegis|`WhiteShieldDragon`| 532 | |Cryolinx (Boss)|`BOSS_WhiteTiger`| 533 | |Cryolinx|`WhiteTiger`| 534 | |Cryolinx Terra (Boss)|`BOSS_WhiteTiger_Ground`| 535 | |Cryolinx Terra (Predator)|`PREDATOR_WhiteTiger_Ground`| 536 | |Cryolinx Terra|`WhiteTiger_Ground`| 537 | |Hangyu (Boss)|`BOSS_WindChimes`| 538 | |Hangyu|`WindChimes`| 539 | |Hangyu Cryst (Boss)|`BOSS_WindChimes_Ice`| 540 | |Hangyu Cryst|`WindChimes_Ice`| 541 | |Knocklem (Boss)|`BOSS_WingGolem`| 542 | |Knocklem|`WingGolem`| 543 | |Knocklem|`WingGolem_Oilrig`| 544 | |Hoocrates (Boss)|`BOSS_WizardOwl`| 545 | |Hoocrates|`WizardOwl`| 546 | |Cremis (Boss)|`BOSS_WoolFox`| 547 | |Cremis|`WoolFox`| 548 | |Wumpo (Boss)|`BOSS_Yeti`| 549 | |Wumpo (Predator)|`PREDATOR_Yeti`| 550 | |Wumpo|`Yeti`| 551 | |Wumpo Botan (Boss)|`BOSS_Yeti_Grass`| 552 | |Wumpo Botan|`Yeti_Grass`| 553 | -------------------------------------------------------------------------------- /Wiki/Data Lists/PassiveSkills.md: -------------------------------------------------------------------------------- 1 | ### [<<<](README.md) Data Lists 2 | 3 | #### English / [简体中文](./PassiveSkills_ZH_CN.md) 4 | 5 | # Passive Skills 6 | Feel free to contribute! 7 | 8 | Anything named 'en Text' is not a skill released in the game - many of them do not have any traits assigned 9 | 10 | Anything named 'PASSIVE_XXXXX' was not released in the game, and many appear very over powered 11 | 12 | 'Fit as a Fiddle' appears to have no traits assigned anymore, this trait had a stamina buff at one point in time - not sure if it was removed by the developers or if it's a bug 13 | 14 | 15 | Traits in the game already; 16 | 17 | |Name|Asset|Rank|Description| 18 | |----|-----|----|-----------| 19 | |Remarkable Craftsmanship|`CraftSpeed_up3`|4|Work Speed 75.0%| 20 | |Diamond Body|`Deffence_up3`|4|Defense 30.0%| 21 | |Lucky|`Rare`|4|Work Speed 15.0% Attack 15.0%| 22 | |Legend|`Legend`|4|Attack +20.0% Defense +20.0% Movement Speed increases 15.0%| 23 | |Siren of the Void|`Witch`|4|Dark 30.0% Ice 30.0%| 24 | |Eternal Flame|`EternalFlame`|4|Fire 30.0% Electricity 30.0%| 25 | |Invader|`Invader`|4|Dark 30.0% Dragon 30.0%| 26 | |Demon God|`PAL_ALLAttack_up3`|4|Attack 30.0% Defense 5.0%| 27 | |Mastery of Fasting|`PAL_FullStomach_Down_3`|4|Hunger -20.0%| 28 | |Heart of the Immovable King|`PAL_Sanity_Down_3`|4|Sanity -20.0%| 29 | |Swift|`MoveSpeed_up_3`|4|Movement Speed 30.0%| 30 | |Eternal Engine|`Stamina_Up_3`|4|Max stamina +75.0% *This effect is only valid for rideable pals.| 31 | |Vampiric|`Vampire`|4|Absorbs a portion of the damage dealt to restore HP. Does not sleep at night and continues to work.| 32 | |Artisan|`CraftSpeed_up2`|3|Work Speed 50.0%| 33 | |Burly Body|`Deffence_up2`|3|Defense 20.0%| 34 | |Ferocious|`PAL_ALLAttack_up2`|3|Attack 20.0%| 35 | |Vanguard|`TrainerATK_UP_1`|3|Attack 10.0%| 36 | |Stronghold Strategist|`TrainerDEF_UP_1`|3|Defense 10.0%| 37 | |Motivational Leader|`TrainerWorkSpeed_UP_1`|3|Work Speed 25.0%| 38 | |Mine Foreman|`TrainerMining_up1`|3|Mining 25.0%| 39 | |Logging Foreman|`TrainerLogging_up1`|3|Logging 25.0%| 40 | |Diet Lover|`PAL_FullStomach_Down_2`|3|Hunger -15.0%| 41 | |Workaholic|`PAL_Sanity_Down_2`|3|Sanity -15.0%| 42 | |Celestial Emperor|`ElementBoost_Normal_2_PAL`|3|Normal 20.0%| 43 | |Flame Emperor|`ElementBoost_Fire_2_PAL`|3|Fire 20.0%| 44 | |Lord of the Sea|`ElementBoost_Aqua_2_PAL`|3|Water 20.0%| 45 | |Lord of Lightning|`ElementBoost_Thunder_2_PAL`|3|Electricity 20.0%| 46 | |Spirit Emperor|`ElementBoost_Leaf_2_PAL`|3|Leaf 20.0%| 47 | |Ice Emperor|`ElementBoost_Ice_2_PAL`|3|Ice 20.0%| 48 | |Earth Emperor|`ElementBoost_Earth_2_PAL`|3|Earth 20.0%| 49 | |Lord of the Underworld|`ElementBoost_Dark_2_PAL`|3|Dark 20.0%| 50 | |Divine Dragon|`ElementBoost_Dragon_2_PAL`|3|Dragon 20.0%| 51 | |Runner|`MoveSpeed_up_2`|3|Movement Speed 20.0%| 52 | |Philanthropist|`Test_PalEgg_HatchingSpeed_Up`|3|When assigned to a Breeding Farm, breeding speed is increased by 100.0%.| 53 | |Serenity|`CoolTimeReduction_Up_1`|3|Active skill cooldown reduction 30.0% Attack +10.0%| 54 | |Infinite Stamina|`Stamina_Up_1`|3|Max stamina +50.0% *This effect is only valid for rideable pals.| 55 | |Noble|`SalePrice_Up_1`|3|Increases the value of items when sold by +5.0%| 56 | |Musclehead|`Noukin`|2|Attack 30.0% Work Speed -50.0%| 57 | |Serious|`CraftSpeed_up1`|1|Work Speed 20.0%| 58 | |Hard Skin|`Deffence_up1`|1|Defense 10.0%| 59 | |Brave|`PAL_ALLAttack_up1`|1|Attack 10.0%| 60 | |Hooligan|`PAL_rude`|1|Attack 15.0% Work Speed -10.0%| 61 | |Conceited|`PAL_conceited`|1|Work Speed 10.0% Defense -10.0%| 62 | |Sadist|`PAL_sadist`|1|Attack 15.0% Defense -15.0%| 63 | |Masochist|`PAL_masochist`|1|Defense 15.0% Attack -15.0%| 64 | |Work Slave|`PAL_CorporateSlave`|1|Work Speed 30.0% Attack -30.0%| 65 | |Aggressive|`PAL_oraora`|1|Attack 10.0% Defense -10.0%| 66 | |Abnormal|`ElementResist_Normal_1_PAL`|1|Normal 10.0%| 67 | |Suntan Lover|`ElementResist_Fire_1_PAL`|1|Fire 10.0%| 68 | |Waterproof|`ElementResist_Aqua_1_PAL`|1|Water 10.0%| 69 | |Insulated Body|`ElementResist_Thunder_1_PAL`|1|Electricity 10.0%| 70 | |Botanical Barrier|`ElementResist_Leaf_1_PAL`|1|Leaf 10.0%| 71 | |Heated Body|`ElementResist_Ice_1_PAL`|1|Ice 10.0%| 72 | |Earthquake Resistant|`ElementResist_Earth_1_PAL`|1|Earth 10.0%| 73 | |Cheery|`ElementResist_Dark_1_PAL`|1|Dark 10.0%| 74 | |Dragonkiller|`ElementResist_Dragon_1_PAL`|1|Dragon 10.0%| 75 | |Zen Mind|`ElementBoost_Normal_1_PAL`|1|Normal 10.0%| 76 | |Pyromaniac|`ElementBoost_Fire_1_PAL`|1|Fire 10.0%| 77 | |Hydromaniac|`ElementBoost_Aqua_1_PAL`|1|Water 10.0%| 78 | |Capacitor|`ElementBoost_Thunder_1_PAL`|1|Electricity 10.0%| 79 | |Fragrant Foliage|`ElementBoost_Leaf_1_PAL`|1|Leaf 10.0%| 80 | |Coldblooded|`ElementBoost_Ice_1_PAL`|1|Ice 10.0%| 81 | |Power of Gaia|`ElementBoost_Earth_1_PAL`|1|Earth 10.0%| 82 | |Veil of Darkness|`ElementBoost_Dark_1_PAL`|1|Dark 10.0%| 83 | |Blood of the Dragon|`ElementBoost_Dragon_1_PAL`|1|Dragon 10.0%| 84 | |Dainty Eater|`PAL_FullStomach_Down_1`|1|Hunger -10.0%| 85 | |Positive Thinker|`PAL_Sanity_Down_1`|1|Sanity -10.0%| 86 | |Nimble|`MoveSpeed_up_1`|1|Movement Speed 10.0%| 87 | |Nocturnal|`Nocturnal`|1|Does not sleep and continues to work even at night.| 88 | |Impatient|`CoolTimeReduction_Up_2`|1|Active skill cooldown reduction 15.0%| 89 | |Fit as a Fiddle|`Stamina_Up_2`|1|Max stamina +25.0% *This effect is only valid for rideable pals.| 90 | |Fine Furs|`SalePrice_Up_2`|1|Increases the value of items when sold by +3.0%| 91 | |Otherworldly Cells|`Alien`|1|Attack +10.0% Fire damage reduction 15.0% Lightning damage reduction 15.0%| 92 | |Clumsy|`CraftSpeed_down1`|-1|Work Speed -10.0%| 93 | |Downtrodden|`Deffence_down1`|-1|Defense -10.0%| 94 | |Coward|`PAL_ALLAttack_down1`|-1|Attack -10.0%| 95 | |Glutton|`PAL_FullStomach_Up_1`|-1|Hunger 10.0%| 96 | |Unstable|`PAL_Sanity_Up_1`|-1|Sanity 10.0%| 97 | |Mercy Hit|`NonKilling`|-1|Pacifist. Will not reduce the target's Health below 1.| 98 | |Easygoing|`CoolTimeReduction_Down_1`|-1|Active skill cooldown extension -15.0%| 99 | |Sickly|`Stamina_Down_1`|-1|Max Stamina -25.0% *This effect is only valid for rideable pals.| 100 | |Shabby|`SalePrice_Down_1`|-1|Decrease the value of items when sold by -10.0%| 101 | |Bottomless Stomach|`PAL_FullStomach_Up_2`|-2|Hunger 15.0%| 102 | |Destructive|`PAL_Sanity_Up_2`|-2|Sanity 15.0%| 103 | |Slacker|`CraftSpeed_down2`|-3|Work Speed -30.0%| 104 | |Brittle|`Deffence_down2`|-3|Defense -20.0%| 105 | |Pacifist|`PAL_ALLAttack_down2`|-3|Attack -20.0%| 106 | -------------------------------------------------------------------------------- /Wiki/Data Lists/PassiveSkills_ZH_CN.md: -------------------------------------------------------------------------------- 1 | ### [<<<](README_ZH_CN.md) 数据列表 2 | 3 | #### [English](./PassiveSkills.md) / 简体中文 4 | 5 | # 被动技能 6 | 欢迎贡献! 7 | 8 | 9 | 游戏中已经存在的特性: 10 | 11 | |名称|资源|等级|描述| 12 | |----|-----|----|-----------| 13 | |卓绝技艺|`CraftSpeed_up3`|4|工作速度+75%| 14 | |金刚之躯|`Deffence_up3`|4|防禦+30%| 15 | |稀有|`Rare`|4|工作速度+15% 攻击+15%| 16 | |传说|`Legend`|4|攻击+20% 防御+20% 移动速度提升15%| 17 | |魔女|`Witch`|4|暗属性攻击伤害增加30% 冰属性攻击伤害增加30%| 18 | |永炎|`EternalFlame`|4|火属性攻击伤害增加30% 雷属性攻击伤害增加30%| 19 | |侵略者|`Invader`|4|暗属性攻击伤害增加30% 龙属性攻击伤害增加30%| 20 | |鬼神|`PAL_ALLAttack_up3`|4|攻击+30% 防禦+5%| 21 | |极限绝食|`PAL_FullStomach_Down_3`|4|减少饱腹度下降速度+20%| 22 | |明镜止水|`PAL_Sanity_Down_3`|4|减少SAN值下降速度+20%| 23 | |神速|`MoveSpeed_up_3`|4|移动速度提升30%| 24 | |永动机|`Stamina_Up_3`|4|最大耐力+75% ※此效果仅对可骑乘的帕鲁有效。| 25 | |吸血鬼|`Vampire`|4|会吸收造成伤害的一部分恢复自身的HP。即使到夜晚也不会睡觉,可以一直工作。| 26 | |工匠精神|`CraftSpeed_up2`|3|工作速度+50%| 27 | |顽强肉体|`Deffence_up2`|3|防禦+20%| 28 | |凶猛|`PAL_ALLAttack_up2`|3|攻击+20%| 29 | |突袭指挥官|`TrainerATK_UP_1`|3|玩家的攻击提升10%| 30 | |铁壁军师|`TrainerDEF_UP_1`|3|玩家的防御提升10%| 31 | |啦啦队|`TrainerWorkSpeed_UP_1`|3|玩家的工作速度提升25%| 32 | |矿山首领|`TrainerMining_up1`|3|玩家的挖掘速度提升25%| 33 | |采伐领袖|`TrainerLogging_up1`|3|玩家的采伐速度提升25%| 34 | |节食大师|`PAL_FullStomach_Down_2`|3|减少饱腹度下降速度+15%| 35 | |工作狂|`PAL_Sanity_Down_2`|3|减少SAN值下降速度+15%| 36 | |圣天|`ElementBoost_Normal_2_PAL`|3|无属性攻击伤害增加20%| 37 | |炎帝|`ElementBoost_Fire_2_PAL`|3|火属性攻击伤害增加20%| 38 | |海皇|`ElementBoost_Aqua_2_PAL`|3|水属性攻击伤害增加20%| 39 | |雷帝|`ElementBoost_Thunder_2_PAL`|3|雷属性攻击伤害增加20%| 40 | |精灵王|`ElementBoost_Leaf_2_PAL`|3|草属性攻击伤害增加20%| 41 | |冰帝|`ElementBoost_Ice_2_PAL`|3|冰属性攻击伤害增加20%| 42 | |岩帝|`ElementBoost_Earth_2_PAL`|3|地属性攻击伤害增加20%| 43 | |冥王|`ElementBoost_Dark_2_PAL`|3|暗属性攻击伤害增加20%| 44 | |神龙|`ElementBoost_Dragon_2_PAL`|3|龙属性攻击伤害增加20%| 45 | |运动健将|`MoveSpeed_up_2`|3|移动速度提升20%| 46 | |博爱主义者|`Test_PalEgg_HatchingSpeed_Up`|3|当分配到配种牧场时,产出蛋的速度将加快100%。| 47 | |沉着冷静|`CoolTimeReduction_Up_1`|3|主动技能的冷却时间缩短30% 攻击+10%| 48 | |无限精力|`Stamina_Up_1`|3|最大耐力+50% ※此效果仅对可骑乘的帕鲁有效。| 49 | |高贵|`SalePrice_Up_1`|3|改善交易价格+5%| 50 | |脑筋|`Noukin`|2|攻击+30% 工作速度-50%| 51 | |认真|`CraftSpeed_up1`|1|工作速度+20%| 52 | |坚硬皮肤|`Deffence_up1`|1|防御+10%| 53 | |勇敢|`PAL_ALLAttack_up1`|1|攻击+10%| 54 | |粗暴|`PAL_rude`|1|攻击+15% 工作速度-10%| 55 | |自恋狂|`PAL_conceited`|1|工作速度+10% 防御-10%| 56 | |虐待狂|`PAL_sadist`|1|攻击+15% 防御-15%| 57 | |受虐狂|`PAL_masochist`|1|防御+15% 攻击-15%| 58 | |社畜|`PAL_CorporateSlave`|1|工作速度+30% 攻击-30%| 59 | |强势|`PAL_oraora`|1|攻击+10% 防御-10%| 60 | |一反常态|`ElementResist_Normal_1_PAL`|1|无属性伤害减少10%| 61 | |拥抱烈日|`ElementResist_Fire_1_PAL`|1|火属性伤害减少10%| 62 | |防水性能|`ElementResist_Aqua_1_PAL`|1|水属性伤害减少10%| 63 | |绝缘体|`ElementResist_Thunder_1_PAL`|1|雷属性伤害减少10%| 64 | |除草效果|`ElementResist_Leaf_1_PAL`|1|草属性伤害减少10%| 65 | |高温体质|`ElementResist_Ice_1_PAL`|1|冰属性伤害减少10%| 66 | |抗震结构|`ElementResist_Earth_1_PAL`|1|地属性伤害减少10%| 67 | |阳光开朗|`ElementResist_Dark_1_PAL`|1|暗属性伤害减少10%| 68 | |屠龙者|`ElementResist_Dragon_1_PAL`|1|龙属性伤害减少10%| 69 | |禅境|`ElementBoost_Normal_1_PAL`|1|无属性攻击伤害增加10%| 70 | |喜欢玩火|`ElementBoost_Fire_1_PAL`|1|火属性攻击伤害增加10%| 71 | |喜欢戏水|`ElementBoost_Aqua_1_PAL`|1|水属性攻击伤害增加10%| 72 | |电容|`ElementBoost_Thunder_1_PAL`|1|雷属性攻击伤害增加10%| 73 | |草木馨香|`ElementBoost_Leaf_1_PAL`|1|草属性攻击伤害增加10%| 74 | |冷血|`ElementBoost_Ice_1_PAL`|1|冰属性攻击伤害增加10%| 75 | |大地之力|`ElementBoost_Earth_1_PAL`|1|地属性攻击伤害增加10%| 76 | |夜幕|`ElementBoost_Dark_1_PAL`|1|暗属性攻击伤害增加10%| 77 | |龙之血脉|`ElementBoost_Dragon_1_PAL`|1|龙属性攻击伤害增加10%| 78 | |小胃|`PAL_FullStomach_Down_1`|1|减少饱腹度下降速度+10%| 79 | |积极思维|`PAL_Sanity_Down_1`|1|减少SAN值下降速度+10%| 80 | |灵活|`MoveSpeed_up_1`|1|移动速度提升10%| 81 | |夜行性|`Nocturnal`|1|即使到夜晚也不会睡觉,会一直工作。| 82 | |急性子|`CoolTimeReduction_Up_2`|1|主动技能的冷却时间缩短15%| 83 | |健康宝宝|`Stamina_Up_2`|1|最大耐力+25% ※此效果仅对可骑乘的帕鲁有效。| 84 | |贵族|`SalePrice_Up_2`|1|改善交易价格+3%| 85 | |未知生物细胞|`Alien`|1|攻击力+10% 火属性伤害减免15% 雷属性伤害减免15%| 86 | |笨手笨脚|`CraftSpeed_down1`|-1|工作速度-10%| 87 | |弱不禁风|`Deffence_down1`|-1|防御-10%| 88 | |胆小|`PAL_ALLAttack_down1`|-1|攻击-10%| 89 | |贪吃|`PAL_FullStomach_Up_1`|-1|增加饱腹度下降速度+10%| 90 | |情绪不稳|`PAL_Sanity_Up_1`|-1|增加SAN值下降速度+10%| 91 | |手下留情|`NonKilling`|-1|和平主义者。 使攻击目标的生命值不会小于1。| 92 | |慢性子|`CoolTimeReduction_Down_1`|-1|主动技能的冷却时间延长-15%| 93 | |家里蹲|`Stamina_Down_1`|-1|最大耐力-25% ※此效果仅对可骑乘的帕鲁有效。| 94 | |寒酸|`SalePrice_Down_1`|-1|交易价格恶化-10%| 95 | |无底之胃|`PAL_FullStomach_Up_2`|-2|增加饱腹度下降速度+15%| 96 | |毁灭欲望|`PAL_Sanity_Up_2`|-2|增加SAN值下降速度+15%| 97 | |偷懒成瘾|`CraftSpeed_down2`|-3|工作速度-30%| 98 | |骨质疏松|`Deffence_down2`|-3|防御-20%| 99 | |消极主义者|`PAL_ALLAttack_down2`|-3|攻击-20%| 100 | -------------------------------------------------------------------------------- /Wiki/Data Lists/README.md: -------------------------------------------------------------------------------- 1 | ### [<<<](../README.md) Wiki 2 | 3 | #### English / [简体中文](./README_ZH_CN.md) 4 | 5 | # Data Lists 6 | 7 | Data Lists are values that are used for command argument or file settings. 8 | 9 | ## Lists 10 | 11 | #### Pal related lists: 12 | * [EPalWazaIDs](EPalWazaIDs.md) 13 | * [PassiveSkills](PassiveSkills.md) 14 | * [Pals](Pals.md) 15 | 16 | #### Item related lists: 17 | * [Items](Items.md) 18 | -------------------------------------------------------------------------------- /Wiki/Data Lists/README_ZH_CN.md: -------------------------------------------------------------------------------- 1 | ### [<<<](../README_ZH_CN.md) Wiki 2 | 3 | #### [English](./README.md) / 简体中文 4 | 5 | # 数据列表 6 | 7 | 数据列表是用于命令参数或文件设置的值。 8 | 9 | ## 列表 10 | 11 | #### 与帕鲁相关的列表: 12 | * [帕鲁技能(未翻译)](EPalWazaIDs_ZH_CN.md) 13 | * [被动技能](PassiveSkills_ZH_CN.md) 14 | * [帕鲁(未翻译)](Pals.md) 15 | 16 | #### 与物品相关的列表: 17 | * [物品(未翻译)](Items.md) -------------------------------------------------------------------------------- /Wiki/Files/Config.md: -------------------------------------------------------------------------------- 1 | ### [<<<](README.md) File Types 2 | 3 | #### English / [简体中文](./Config_ZH_CN.md) 4 | 5 | # Config.json 6 | 7 | Explanation of every config entry: 8 | |config name|values|description| 9 | |-|-|-| 10 | | `RCONbase64` | true, false | Set this to `true` to use base64 encoding in RCON. | 11 | | `adminAutoLogin` | true, false | Auto login admins upon join. | 12 | | `adminIPs` | `["127.0.0.1", "..."]` | IP addresses that are allowed to use admin commands. | 13 | | `allowAdminCheats` | true, false | allows admins to use cheats. | 14 | | `announceConnections` | true, false | Broadcast message when player joins/leaves server. | 15 | | `announcePunishments` | true, false | Broadcast message when player gets kicked/banned by anticheat. | 16 | | `bannedChatWords` | `["word1", "word2", "..."]` | Allows you to get rid of pesky RMT adverts. Messages containing words from this array will be blocked. | 17 | | `bannedIPs` | `["127.0.0.1", "..."]` | List of banned IP addresses. | 18 | | `bannedMessage` | "You are banned." | Allows you to customize message players see when they try to join your server while being IP banned. | 19 | | `bannedNames` | `["anquan666", "Goldberg"]` | Some basic pirated versions protection. | 20 | | `blockTowerBossCapture` | true, false | Enables/disables blocking of tower bosses capturing. | 21 | | `chatBypassWait` | true, false | Allows you to get rid of 1 minute cooldown between sending chat messages. | 22 | | `disableButchering` | true, false | It ain't perfect, but better than nothing if you want to fix dupe exploit with infinite butchering. | 23 | | `disableIllegalItemProtection` | true, false | Disables protection against Debug/Robbery spheres (some mods add them as craftable items to the game). | 24 | | `disablePalRenaming` | true, false | Disables Pal renamings. | 25 | | `disableRenaming` | true, false | Disables renamings. | 26 | | `doActionUponIllegalPalStats` | true, false | Allow automatic actions when a player tries to use an exploit to enhance pal stats more than allowed. | 27 | | `isChineseCmd` | true, false | Set to true if the console should support Chinese encoding. Can be ignored on newer Windows versions. | 28 | | `logChat` | true, false | Log all chat messages. | 29 | | `logNetworking` | true, false | Log almost everything that players are sending to server. | 30 | | `logPlayerIP` | true, false | Additionally logs the player IP whenever a log contains a player. | 31 | | `logPlayerUID` | true, false | Additionally logs the player UniqueID whenever a log contains a player. | 32 | | `logRCON` | true, false | Logs RCON commands. | 33 | | `logPlayerDeaths` | true, false | When set to `false`, it will no longer log player deaths in the console. | 34 | | `logPlayerLogins` | true, false | When set to `false`, it will no longer log player Logins and Logouts in the console. | 35 | | `palStatsMaxRank` | any positive number including 0. | 0 deactivates pal enhancement completely. Any number above 0 sets a new limit. Default max rank is 20. So you can put 5 and it is limited to 5. -1 detects the server's max pal enhancement option, so default will be 10 but if a mod changes this number -1 will detect the mod's new limit. | 36 | | `pveMaxToPalBanThreshold` | any positive number. | Attempting to deal damage to Pal higher than this number will flag player as cheater. | 37 | | `pvpMaxToPalDamage` | any positive number. | Max damage that can be done to player owned pals **IF** pvp is enabled (bEnablePlayerToPlayerDamage). If damage exceeds this number, it will be floored down to it. Note: specifically this option is for damage before any damage mitigation. | 38 | | `pvpMaxToBuildingDamage` | any positive number. | Same as `pvpMaxToPalDamage `, but against buildings. Note: specifically this option is for damage before any damage mitigation. | 39 | | `shouldBanCheaters` | true, false | Allow cheat detection to ban cheaters. | 40 | | `shouldIPBanCheaters` | true, false | Allow cheat detection to IP ban cheaters. | 41 | | `shouldKickCheaters` | true, false | Allow cheat detection to kick cheaters. | 42 | | `shouldWarnCheaters` | true, false | Warns cheaters in chat that they got caught. | 43 | | `shouldWarnCheatersReason` | true, false | Provides them a reason why they got caught. | 44 | | `steamidProtection` | true, false | Avoids that the same steamID can join the server while already logged in. | 45 | | `useAdminWhitelist` | true, false | Enables/disables usage of admin IP whitelist system. | 46 | | `useWhitelist` | true, false | Enables/disables SteamID whitelist. | 47 | | `whitelistMessage` | "You are not whitelisted." | Allows you to customize the not whitelisted message. | 48 | | `infiniteAmmoExploitActions` | true, false | When set to `false`, it will only log warnings in the console. | 49 | | `infiniteAmmoExploitDisabled` | true, false | When set to `true`, it will ignore the feature completely. | 50 | -------------------------------------------------------------------------------- /Wiki/Files/Config_ZH_CN.md: -------------------------------------------------------------------------------- 1 | ### [<<<](README_ZH_CN.md) 文件类型 2 | 3 | #### [English](./Config.md) / 简体中文 4 | 5 | # Config.json 6 | 7 | 以下是每个配置项的的说明: 8 | | 配置项 | 值 | 说明 | 9 | |--------|-----|------| 10 | | `RCONbase64` | true, false | 设置为`true`可以在RCON中使用Base64编码 优点:适用于unicode字符(中文/韩语/俄语/等)缺点: 您只能使用支持编码/解码 base64的RCON客户端。 | 11 | | `adminAutoLogin` | true, false | 如果您的IP与管理员白名单匹配,则自动授予您管理员权限。 | 12 | | `adminIPs` | `["127.0.0.1", "..."]` | 允许使用管理员指令的白名单IP地址列表。 | 13 | | `allowAdminCheats` | true, false | 允许管理员进行作弊行为而不会受到惩罚。 | 14 | | `announceConnections` | true, false | 当玩家加入/离开服务器时广播消息。 | 15 | | `announcePunishments` | true, false | 当玩家被反作弊系统踢出或封禁时广播消息。 | 16 | | `bannedChatWords` | `["word1", "word2", "..."]` | 用于过滤RMT(即现实金钱交易,用现实货币交易虚拟物品的行为)广告的单词列表。包含这些词的消息将被阻止。 | 17 | | `bannedIPs` | `["127.0.0.1", "..."]` | 被封禁的IP地址列表。 | 18 | | `bannedMessage` | "You are banned." | 允许您自定义玩家在 IP 被禁止时尝试加入您的服务器时看到的消息(支持中文)。 | 19 | | `bannedNames` | `["anquan666", "Goldberg"]` | 一些基本的盗版保护(封禁的玩家昵称)。 | 20 | | `blockTowerBossCapture` | true, false | 启用/禁用捕捉高塔boss。 | 21 | | `chatBypassWait` | true, false | 可以让你在发送聊天信息时不再有1分钟的冷却时间。 | 22 | | `disableButchering` | true, false | 禁用屠宰功能,以防止无限屠宰的物品复制漏洞。 | 23 | | `disableIllegalItemProtection` | true, false | 禁用对调试/抢劫球体(某些模组将其作为可制作物品添加到游戏中)的保护。 | 24 | | `disablePalRenaming` | true, false | Disables Pal renamings. | 25 | | `disableRenaming` | true, false | 禁用玩家重命名功能(他们仍然可以改宠物的名字)。 | 26 | | `doActionUponIllegalPalStats` | true, false | 检测到作弊时执行操作(设置为 false,则在检测到作弊时不会执行踢出或封禁等操作,需要人工判断)。 | 27 | | `isChineseCmd` | true, false | 如果你希望显示中文字符并使用默认的windows命令行,请将此设置为`true`。在较新的Windows版本中可以忽略。 | 28 | | `logChat` | true, false | 将所有聊天消息记录到日志。 | 29 | | `logNetworking` | true, false | 将玩家发送给服务器的几乎所有网络数据记录到日志。 | 30 | | `logPlayerIP` | true, false | Additionally logs the player IP whenever a log contains a player. | 31 | | `logPlayerUID` | true, false | Additionally logs the player UniqueID whenever a log contains a player. | 32 | | `logRCON` | true, false | 将所有RCON命令记录到日志。 | 33 | | `logPlayerDeaths` | true, false | When set to `false`, it will no longer log player deaths in the console. | 34 | | `logPlayerLogins` | true, false | When set to `false`, it will no longer log player Logins and Logouts in the console. | 35 | | `palStatsMaxRank` | 任何正数(包括0) | 设置强化帕鲁的最大等级限制。设置为0任何玩家都无法强化帕鲁。任何大于0的数值将设置新的限制,默认为10。如果设置为-1,将检测服务器的最大帕鲁强化等级,并相应地更新此值。 | 36 | | `pveMaxToPalBanThreshold` | 任何正数 | 尝试对高于此数值的帕鲁造成伤害时,将标记为作弊者。 | 37 | | `pvpMaxToPalDamage` | 任何正数 | 如果启用PVP(bEnablePlayerToPlayerDamage),玩家对帕鲁造成的最大伤害超过此数值,将会被限制为该数值。此选项适用于未经任何伤害减免的伤害。 | 38 | | `pvpMaxToBuildingDamage` | 任何正数 | 同`pvpMaxToPalDamage`,但针对建筑物。此选项适用于未经任何伤害减免的伤害。 | 39 | | `shouldBanCheaters` | true, false | 允许反作弊系统自动封禁作弊者。 | 40 | | `shouldIPBanCheaters` | true, false | 允许反作弊系统自动封禁作弊者IP。 | 41 | | `shouldKickCheaters` | true, false | 允许反作弊系统自动踢出作弊者。 | 42 | | `shouldWarnCheaters` | true, false | 允许反作弊系统在聊天中警告作弊者。 | 43 | | `shouldWarnCheatersReason` | true, false | 提供作弊者被警告的原因。 | 44 | | `steamidProtection` | true, false | 防止相同的SteamID在玩家已经登录时再次加入服务器。 | 45 | | `useAdminWhitelist` | true, false | 启用/禁用管理员IP白名单系统(仅有adminIPs中的IP地址的玩家可以通过/adminpassword指令获得管理员权限)。 | 46 | | `useWhitelist` | true, false | 启用/禁用SteamID白名单(仅有在SteamID白名单列表中的玩家可以进入服务器)。 | 47 | | `whitelistMessage` | "You are not whitelisted." | 自定义未被列入白名单时显示的消息(支持中文)。 | 48 | | `infiniteAmmoExploitActions` | true, false | When set to `false`, it will only log warnings in the console. | 49 | | `infiniteAmmoExploitDisabled` | true, false | When set to `true`, it will ignore the feature completely. | 50 | -------------------------------------------------------------------------------- /Wiki/Files/PalJSON Presets/OPnubis.json: -------------------------------------------------------------------------------- 1 | { 2 | "CharacterID": "Anubis", 3 | "NickName": "OPnubis", 4 | "Level": 60, 5 | "IsRarePal": true, 6 | "MaxHP": 9999999, 7 | "Hp": 9999999, 8 | "MaxMP": 9999999, 9 | "MP": 9999999, 10 | "MaxSP": 9999999, 11 | "FullStomach": 99999.0, 12 | "MaxFullStomach": 99999.0, 13 | "CraftSpeed": 9999999, 14 | "Rank": 255, 15 | "RankUpExp": 255, 16 | "Rank_HP": 255, 17 | "Rank_Attack": 255, 18 | "Rank_Defence": 255, 19 | "Rank_CraftSpeed": 255, 20 | "Talent_HP": 255, 21 | "Talent_Melee": 255, 22 | "Talent_Shot": 255, 23 | "Talent_Defense":255, 24 | "EquipWaza": [ 25 | "SandTornado", 26 | "Unique_Anubis_GroundPunch", 27 | "Unique_Anubis_LowRoundKick" 28 | ], 29 | "PassiveSkillList": [ 30 | "Legend", 31 | "ItemWeightReduction_PartnerSkill_1", 32 | "ItemWeightReduction_PartnerSkill_2", 33 | "ItemWeightReduction_PartnerSkill_3", 34 | "ItemWeightReduction_PartnerSkill_4", 35 | "ItemWeightReduction_PartnerSkill_5", 36 | "MaxInventoryWeight_up_Partnerskill_1", 37 | "MaxInventoryWeight_up_Partnerskill_2", 38 | "MaxInventoryWeight_up_Partnerskill_3", 39 | "MaxInventoryWeight_up_Partnerskill_4", 40 | "MaxInventoryWeight_up_Partnerskill_5", 41 | "MaxInventoryWeight_up_Partnerskill_6", 42 | "MaxInventoryWeight_up_Partnerskill_7", 43 | "MaxInventoryWeight_up_Partnerskill_8", 44 | "MaxInventoryWeight_up_Partnerskill_9", 45 | "MaxInventoryWeight_up_Partnerskill_10", 46 | "MaxInventoryWeight_up_Partnerskill_11", 47 | "MaxInventoryWeight_up_Partnerskill_12", 48 | "Mining_up1", 49 | "Mining_up2", 50 | "Mining_up3", 51 | "Mining_up4", 52 | "Mining_up5", 53 | "Mining_up6", 54 | "Mining_up7", 55 | "Mining_up8", 56 | "Mining_up9", 57 | "Mining_up10", 58 | "LifeSteal_1", 59 | "LifeSteal_2", 60 | "LifeSteal_3", 61 | "LifeSteal_4", 62 | "LifeSteal_5", 63 | "Rare", 64 | "Legend", 65 | "PAL_ElementPassive_4", 66 | "ElementResist_Normal_1_PAL", 67 | "ElementResist_Fire_1_PAL", 68 | "ElementResist_Aqua_1_PAL", 69 | "ElementResist_Thunder_1_PAL", 70 | "ElementResist_Leaf_1_PAL", 71 | "ElementResist_Ice_1_PAL", 72 | "ElementResist_Earth_1_PAL", 73 | "ElementResist_Dark_1_PAL", 74 | "ElementResist_Dragon_1_PAL", 75 | "ElementBoost_Normal_1_PAL", 76 | "ElementBoost_Fire_1_PAL", 77 | "ElementBoost_Aqua_1_PAL", 78 | "ElementBoost_Thunder_1_PAL", 79 | "ElementBoost_Leaf_1_PAL", 80 | "ElementBoost_Ice_1_PAL", 81 | "ElementBoost_Earth_1_PAL", 82 | "ElementBoost_Dark_1_PAL", 83 | "ElementBoost_Dragon_1_PAL", 84 | "PAL_FullStomach_Up_1", 85 | "PAL_FullStomach_Up_2", 86 | "PAL_Sanity_Up_1", 87 | "PAL_Sanity_Up_2", 88 | "ElementBoost_Normal_2_PAL", 89 | "ElementBoost_Fire_2_PAL", 90 | "ElementBoost_Aqua_2_PAL", 91 | "ElementBoost_Thunder_2_PAL", 92 | "ElementBoost_Leaf_2_PAL", 93 | "ElementBoost_Ice_2_PAL", 94 | "ElementBoost_Earth_2_PAL", 95 | "ElementBoost_Dark_2_PAL", 96 | "ElementBoost_Dragon_2_PAL", 97 | "MoveSpeed_up_1", 98 | "MoveSpeed_up_2", 99 | "MoveSpeed_up_3", 100 | "CollectItemDrop_PartnerSkill_1", 101 | "CollectItemDrop_PartnerSkill_2", 102 | "CollectItemDrop_PartnerSkill_3", 103 | "CollectItemDrop_PartnerSkill_4", 104 | "CollectItemDrop_PartnerSkill_5", 105 | "PalSP_Increase_1", 106 | "PalSP_Increase_2", 107 | "PalSP_Increase_3", 108 | "ShopBuyPrice_Money_Increase", 109 | "ShopSellPrice_Money_Increase", 110 | "Nocturnal", 111 | "SyncroPassiveWhenCapture_PartnerSkill_1", 112 | "SyncroPassiveWhenCapture_PartnerSkill_2", 113 | "SyncroPassiveWhenCapture_PartnerSkill_3", 114 | "SyncroPassiveWhenCapture_PartnerSkill_4", 115 | "SyncroPassiveWhenCapture_PartnerSkill_5", 116 | "CoolTimeReduction_Up_1", 117 | "CoolTimeReduction_Up_2", 118 | "CoolTimeReduction_Down_1", 119 | "Alien" 120 | ] 121 | } -------------------------------------------------------------------------------- /Wiki/Files/PalJSON Presets/PalGuardian.json: -------------------------------------------------------------------------------- 1 | { 2 | "CharacterID": "JetDragon", 3 | "NickName": "PalGuardian", 4 | "Gender": 1, 5 | "Level": 60, 6 | "IsRarePal": true, 7 | "MaxHP": 1000000000, 8 | "Hp": 1000000000, 9 | "MaxMP": 1000000000, 10 | "MP": 1000000000, 11 | "MaxSP": 1000000000, 12 | "FullStomach": 99999.0, 13 | "MaxFullStomach": 99999.0, 14 | "CraftSpeed": 1000000, 15 | "Rank": 255, 16 | "Rank_HP": 255, 17 | "Rank_Attack": 255, 18 | "Rank_Defence": 255, 19 | "Rank_CraftSpeed": 255, 20 | "Talent_HP": 255, 21 | "Talent_Melee": 255, 22 | "Talent_Shot": 255, 23 | "Talent_Defense":255, 24 | "PassiveSkillList": [ 25 | "MoveSpeed_up_1", 26 | "MoveSpeed_up_2", 27 | "MoveSpeed_up_3", 28 | "Legend" 29 | ] 30 | } -------------------------------------------------------------------------------- /Wiki/Files/PalJSON.md: -------------------------------------------------------------------------------- 1 | ### [<<<](README.md) File Types 2 | 3 | #### English / [简体中文](./PalJSON_ZH_CN.md) 4 | 5 | # PalJSON 6 | 7 | ### Contents 8 | - [Description](PalJSON.md#description) 9 | - [Attributes](PalJSON.md#attributes) 10 | - [Template](PalJSON.md#template) 11 | - [Presets](PalJSON.md#presets) 12 | 13 | ## Description 14 | PalJSON is a JSON file that defines the attributes for the Pal being created. **It must include a `CharacterID`, otherwise, the creation process will fail.** 15 | 16 | Check this out for default values: [GitHub/iiLarsH/Chillet/csv's/PalData.csv](https://github.com/iiLarsH/Chillet/blob/698b5ea1190177533dc7924f9af9e40ff8ee4776/csv's/PalData.csv) 17 | 18 | ## Attributes 19 | 20 | |Key|Value Type|Value(s)|Description| 21 | |---|----------|--------|-----------| 22 | |`CharacterID`|String containing [PalID](https://pwmodding.wiki/docs/game-data/monster-table)|"..."|Determines which Pal it is.| 23 | |`NickName`|String|"..."|Display Name of the Pal.| 24 | |`UniqueNPCID`|String|"..."|| 25 | |`Gender`|Integer|1 = Male
2 = Female|| 26 | |`Level`|Integer|0 - 255|The level of the Pal.| 27 | |`Exp`|Integer|0 to 2^63|The amount of exp the Pal has.| 28 | |`IsRarePal`|Boolean|true or false|Shiny flag. 29 | |`MaxHP`|Integer|0 to 2^63|The max HP of the Pal.| 30 | |`Hp`|Integer|0 to 2^63|The current HP of the Pal.| 31 | |`MaxMP`|Integer|0 to 2^63|The max MP of the Pal.| 32 | |`MP`|Integer|0 to 2^63|The current MP of the Pal.| 33 | |`MaxSP`|Integer|0 to 2^63|The max SP of the Pal.| 34 | |`ShieldMaxHP`|Integer|0 to 2^63|The max Shield HP of the Pal.| 35 | |`ShieldHP`|Integer|0 to 2^63|The current Shield HP of the Pal.| 36 | |`FullStomach`|Float|0.0 to ??|The Pal's current stomach fullness.| 37 | |`MaxFullStomach`|Float|0.0 to ??|The Pal's max stomach . Heighest default Value I found on a Pal was `600.0`.| 38 | |`Support`|Integer|0 to 2^31|| 39 | |`CraftSpeed`|Integer|0 to 2^31|The Pal's base crafting speed. Default is `100`.| 40 | |`SanityValue`|Float|0.0 to ??|The current Pal's SAN.| 41 | |`UnusedStatusPoint`|Integer|0 to 2^16|| 42 | |`Rank`|Integer|0 - 255| 43 | |`RankUpExp`|Integer|0 - 255| 44 | |`Rank_HP`|Integer|0 - 255| 45 | |`Rank_Attack`|Integer|0 - 255| 46 | |`Rank_Defence`|Integer|0 - 255| 47 | |`Rank_CraftSpeed`|Integer|0 - 255| 48 | |`Talent_HP`|Integer|0 - 255| 49 | |`Talent_Melee`|Integer|0 - 255| 50 | |`Talent_Shot`|Integer|0 - 255| 51 | |`Talent_Defense`|Integer|0 - 255| 52 | |`EquipWaza`|String Array of [EPalWazaIDs](../Data%20Lists/EPalWazaIDs.md)|["", "", ""]|The active/equipped Skills of the Pal.| 53 | |`MasteredWaza`|String Array of [EPalWazaIDs](../Data%20Lists/EPalWazaIDs.md)|["", "", "", ""]|The learned Skills of the Pal.| 54 | |`PassiveSkillList`|String Array of [PassiveSkills](../Data%20Lists/PassiveSkills.md)|["", "", "", ""]|All passive Skills the Pal has.| 55 | 56 | 57 | ## Template 58 | The files have to be placed in [`Pal/Binaries/Win64/PalDefender/pals/`](../../README.md#windows) 59 | ```json 60 | { 61 | "NickName": "", 62 | "CharacterID": "", 63 | "UniqueNPCID": "", 64 | "Gender": 1, 65 | "Level": 1, 66 | "Exp": 0, 67 | "IsRarePal": false, 68 | "MaxHP": 100, 69 | "Hp": 100, 70 | "MaxMP": 100, 71 | "MP": 100, 72 | "MaxSP": 100, 73 | "ShieldMaxHP": 0, 74 | "ShieldHP": 0, 75 | "FullStomach": 600.0, 76 | "MaxFullStomach": 600.0, 77 | "Support": 100, 78 | "CraftSpeed": 100, 79 | "SanityValue": 100.0, 80 | "UnusedStatusPoint": 0, 81 | "Rank": 0, 82 | "RankUpExp": 0, 83 | "Rank_HP": 0, 84 | "Rank_Attack": 0, 85 | "Rank_Defence": 0, 86 | "Rank_CraftSpeed": 0, 87 | "Talent_HP": 0, 88 | "Talent_Melee": 0, 89 | "Talent_Shot": 0, 90 | "Talent_Defense": 0, 91 | "EquipWaza": [], 92 | "MasteredWaza": [], 93 | "PassiveSkillList": [] 94 | } 95 | ``` 96 | 97 | ## Presets 98 | * [OPnubis](PalJSON%20Presets/OPnubis.json) - Anubis with absolute maxed out attributes. 99 | -------------------------------------------------------------------------------- /Wiki/Files/PalJSON_ZH_CN.md: -------------------------------------------------------------------------------- 1 | ### [<<<](README_ZH_CN.md) 文件类型 2 | 3 | #### [English](./PalJSON.md) / 简体中文 4 | 5 | # PalJSON 6 | 7 | ### 目录 8 | - [描述](PalJSON_ZH_CN.md#描述) 9 | - [属性](PalJSON_ZH_CN.md#属性) 10 | - [模板](PalJSON_ZH_CN.md#模板) 11 | - [预设](PalJSON_ZH_CN.md#预设) 12 | 13 | ## 描述 14 | PalJSON 是一个 JSON 文件,用于定义正在创建的帕鲁的属性。**它必须包含 `CharacterID`,否则创建过程会失败。** 15 | 16 | 查看默认值:[GitHub/iiLarsH/Chillet/csv's/PalData.csv](https://github.com/iiLarsH/Chillet/blob/698b5ea1190177533dc7924f9af9e40ff8ee4776/csv's/PalData.csv) 17 | 18 | ## 属性 19 | 20 | | 参数 | 值类型 | 值(示例) | 描述 | 21 | |----|--------|------------|------| 22 | | `CharacterID` | 字符串,包含 [PalID](https://pwmodding.wiki/docs/game-data/monster-table) | "..." | 确定该帕鲁是哪个。 | 23 | | `NickName` | 字符串 | "..." |帕鲁的显示名称。 | 24 | | `UniqueNPCID` | 字符串 | "..." | | 25 | | `Gender` | 整数 | 1 = 男性
2 = 女性 | | 26 | | `Level` | 整数 | 0 - 255 |帕鲁的等级。 | 27 | | `Exp` | 整数 | 0 到 2^63 |帕鲁拥有的经验值。 | 28 | | `IsRarePal` | 布尔值 | true 或 false | 是否为稀有帕鲁。 | 29 | | `MaxHP` | 整数 | 0 到 2^63 |帕鲁的最大血量。 | 30 | | `Hp` | 整数 | 0 到 2^63 |帕鲁当前的血量。 | 31 | | `MaxMP` | 整数 | 0 到 2^63 |帕鲁的最大 MP。 | 32 | | `MP` | 整数 | 0 到 2^63 |帕鲁当前的 MP。 | 33 | | `MaxSP` | 整数 | 0 到 2^63 |帕鲁的最大体力值。 | 34 | | `ShieldMaxHP` | 整数 | 0 到 2^63 |帕鲁的最大盾牌血量。 | 35 | | `ShieldHP` | 整数 | 0 到 2^63 |帕鲁当前的盾牌血量。 | 36 | | `FullStomach` | 浮动数 | 0.0 到 ?? |帕鲁当前的饱腹度。 | 37 | | `MaxFullStomach` | 浮动数 | 0.0 到 ?? |帕鲁的最大饱腹度。最高的默认值在帕鲁中为 `600.0`。 | 38 | | `Support` | 整数 | 0 到 2^31 | | 39 | | `CraftSpeed` | 整数 | 0 到 2^31 |帕鲁的基础工作速度,默认值为 `100`。 | 40 | | `SanityValue` | 浮动数 | 0.0 到 ?? |帕鲁当前的 SAN(理智值)。 | 41 | | `UnusedStatusPoint` | 整数 | 0 到 2^16 | | 42 | | `Rank` | 整数 | 0 - 255 | | 43 | | `RankUpExp` | 整数 | 0 - 255 | | 44 | | `Rank_HP` | 整数 | 0 - 255 | | 45 | | `Rank_Attack` | 整数 | 0 - 255 | | 46 | | `Rank_Defence` | 整数 | 0 - 255 | | 47 | | `Rank_CraftSpeed` | 整数 | 0 - 255 | | 48 | | `Talent_HP` | 整数 | 0 - 255 | | 49 | | `Talent_Melee` | 整数 | 0 - 255 | | 50 | | `Talent_Shot` | 整数 | 0 - 255 | | 51 | | `Talent_Defense` | 整数 | 0 - 255 | | 52 | | `EquipWaza` | 字符串数组,包含 [EPalWazaIDs](../Data%20Lists/EPalWazaIDs_ZH_CN.md) | ["", "", ""] |帕鲁当前装备的技能。 | 53 | | `MasteredWaza` | 字符串数组,包含 [EPalWazaIDs](../Data%20Lists/EPalWazaIDs_ZH_CN.md) | ["", "", "", ""] |帕鲁已学会的技能。 | 54 | | `PassiveSkillList` | 字符串数组,包含 [PassiveSkills](../Data%20Lists/PassiveSkills_ZH_CN.md) | ["", "", "", ""] |帕鲁拥有的所有被动技能。 | 55 | 56 | ## 模板 57 | 文件必须放置在 [`Pal/Binaries/Win64/PalDefender/pals/`](../../README_ZH_CN.md#windows) 58 | ```json 59 | { 60 | "NickName": "", 61 | "CharacterID": "", 62 | "UniqueNPCID": "", 63 | "Gender": 1, 64 | "Level": 1, 65 | "Exp": 0, 66 | "IsRarePal": false, 67 | "MaxHP": 100, 68 | "Hp": 100, 69 | "MaxMP": 100, 70 | "MP": 100, 71 | "MaxSP": 100, 72 | "ShieldMaxHP": 0, 73 | "ShieldHP": 0, 74 | "FullStomach": 600.0, 75 | "MaxFullStomach": 600.0, 76 | "Support": 100, 77 | "CraftSpeed": 100, 78 | "SanityValue": 100.0, 79 | "UnusedStatusPoint": 0, 80 | "Rank": 0, 81 | "RankUpExp": 0, 82 | "Rank_HP": 0, 83 | "Rank_Attack": 0, 84 | "Rank_Defence": 0, 85 | "Rank_CraftSpeed": 0, 86 | "Talent_HP": 0, 87 | "Talent_Melee": 0, 88 | "Talent_Shot": 0, 89 | "Talent_Defense": 0, 90 | "EquipWaza": [], 91 | "MasteredWaza": [], 92 | "PassiveSkillList": [] 93 | } 94 | ``` 95 | 96 | ## 预设 97 | * [OPnubis](PalJSON%20Presets/OPnubis.json) - Anubis,所有属性已最大化。 98 | -------------------------------------------------------------------------------- /Wiki/Files/README.md: -------------------------------------------------------------------------------- 1 | ### [<<<](../README.md) Wiki 2 | 3 | #### English / [简体中文](./README_ZH_CN.md) 4 | 5 | # File Types 6 | - [Config.json](./Config.md) (Configuration File) 7 | - [PalJSON](PalJSON.md) 8 | -------------------------------------------------------------------------------- /Wiki/Files/README_ZH_CN.md: -------------------------------------------------------------------------------- 1 | ### [<<<](../README_ZH_CN.md) Wiki 2 | 3 | #### [English](./README.md) / 简体中文 4 | 5 | # 文件类型 6 | - [Config.json](./Config_ZH_CN.md) (反作弊配置文件) 7 | - [PalJSON](PalJSON_ZH_CN.md) 8 | -------------------------------------------------------------------------------- /Wiki/README.md: -------------------------------------------------------------------------------- 1 | ![PalDefender Logo](/.github/images/LOGO_WIKI.jpg) 2 | *LOGO made by [Jia]()* ! 3 | 4 | # PalDefender Wiki 5 | 6 | #### English / [简体中文](./README_ZH_CN.md) 7 | 8 | ## Contents 9 | 10 | - [Commands](./Commands/README.md) 11 | - [File Types](./Files/README.md) 12 | - [Data Lists](./Data%20Lists/README.md) 13 | - [FAQ](#faq) 14 | - [I've accidentally banned myself/someone. How can I unban them?](#ive-accidentally-banned-myselfsomeone-how-can-i-unban-them) 15 | - [I cannot login as an admin, it says that admin commands are whitelist protected.](#i-cannot-login-as-an-admin-it-says-that-admin-commands-are-whitelist-protected) 16 | - [My server crashes on startup.](#my-server-crashes-on-startup) 17 | - [I cannot see certain symbols properly in my server console.](#i-cannot-see-certain-symbols-properly-in-my-server-console) 18 | - [How can I report crashes?](#how-can-i-report-crashes) 19 | 20 | 21 | 22 | ## Foreword 23 | The Wiki is currently under construction and therefor incomplete. We would appreciate if you contribute or point out mistakes, so the Wiki slowly and steady fills up. 24 | 25 | ## FAQ 26 | ### I've accidentally banned myself/someone. How can I unban them? 27 | If you've banned their IP, for the time being you would need to edit `Config.json` file and either reload the config or restart the server. If you've banned their account, you would need to remove their steamID from Pal\Saved\SaveGames\banlist.txt and restart the server afterwards. 28 | 29 | --- 30 | 31 | ### I cannot login as an admin, it says that admin commands are whitelist protected. 32 | Make sure you have added your IP to `Config.json` like shown on the picture. Alternatively, you can set useAdminWhitelist to false, but that is not recommended, since cheaters are known to have some kind of exploit to obtain admin password. 33 | 34 | ![AdminWhitelist](/.github/images/AdminWhitelist.png) 35 | 36 | --- 37 | 38 | ### My server crashes on startup. 39 | Ensure you haven't messed up in `Config.json` file, try deleting in and starting server again. If that doesn't helps and this is your first time using PalDefender, I'd suggest trying installing [VC++ redistributable](https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170). 40 | 41 | --- 42 | 43 | ### I cannot see certain symbols properly in my server console. 44 | Please use Windows Terminal (or any alternative with proper unicode support) instead of default windows console. 45 | 46 | --- 47 | 48 | ### How can I report crashes? 49 | Send your `\Pal\Saved\Crashes\*random numbers*\CrashContext.runtime-xml` file + PalDefender version used + log from `Pal\Binaries\Win64\logs` folder in bug-reports channel to our [issue section](https://github.com/Ultimeit/PalDefender/issues). 50 | 51 | --- 52 | -------------------------------------------------------------------------------- /Wiki/README_ZH_CN.md: -------------------------------------------------------------------------------- 1 | ![PalDefender Logo](/.github/images/LOGO_WIKI.jpg) 2 | *LOGO made by [Jia]()* ! 3 | 4 | # PalDefender Wiki 5 | 6 | #### [English](./README.md) / 简体中文 7 | 8 | ## 目录 9 | 10 | - [命令](./Commands/README_ZH_CN.md) 11 | - [文件类型](./Files/README_ZH_CN.md) 12 | - [数据列表](./Data%20Lists/README_ZH_CN.md) 13 | - [常见问题解答](#faq) 14 | - [我不小心封禁了自己/别人。如何解除封禁?](#我不小心封禁了自己别人如何解除封禁) 15 | - [我无法以管理员身份登录,显示管理员命令被白名单保护。](#我无法以管理员身份登录显示管理员命令被白名单保护) 16 | - [我的服务器在启动时崩溃。](#我的服务器在启动时崩溃) 17 | - [我在服务器控制台中无法正确看到某些符号。](#我在服务器控制台中无法正确看到某些符号) 18 | - [如何报告崩溃?](#如何报告崩溃) 19 | 20 | 21 | 22 | ## 前言 23 | 此Wiki正在建设中,因此内容不完整。如果您能提供贡献或指出错误,将有助于Wiki逐步完善。 24 | 25 | ## 常见问题解答 26 | ### 我不小心封禁了自己/别人。如何解除封禁? 27 | 如果是封禁了他们的IP,您需要暂时编辑`Config.json`文件,并重新加载配置或重启服务器。如果是封禁了他们的账户,您需要从`Pal\Saved\SaveGames\banlist.txt`中删除他们的SteamID,并等待几分钟或在此之后重启服务器。 28 | 29 | --- 30 | 31 | ### 我无法以管理员身份登录,显示管理员命令被白名单保护。 32 | 确保您已将您的IP地址添加到`Config.json`文件中,如图所示。或者,您可以将`useAdminWhitelist`设置为`false`,但这不推荐,因为已知作弊者有某种漏洞能够获取管理员密码。 33 | 34 | ![AdminWhitelist](/.github/images/AdminWhitelist.png) 35 | 36 | --- 37 | 38 | ### 我的服务器在启动时崩溃。 39 | 请确保`Config.json`文件没有配置错误,尝试删除该文件并重新启动服务器。如果仍然无法解决问题,且这是您第一次使用PalDefender,建议安装[VC++ redistributable](https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170)。 40 | 41 | --- 42 | 43 | ### 我在服务器控制台中无法正确看到某些符号。 44 | 请使用Windows Terminal(或任何支持Unicode的替代终端)代替默认的Windows控制台。 45 | 46 | --- 47 | 48 | ### 如何报告崩溃? 49 | 将`Pal\Saved\Crashes\*随机数字*\CrashContext.runtime-xml`文件 + 使用的PalDefender版本 + `Pal\Binaries\Win64\logs`文件夹中的日志发送至[issue section](https://github.com/Ultimeit/PalDefender/issues)的bug-reports频道。 50 | 51 | --- 52 | --------------------------------------------------------------------------------