đ Pals/ImportRules/*.json
Pal import rules control which PalTemplate.json files are allowed, blocked, or adjusted when imported by commands or API actions.
ID lookup
Use paldeck.cc/pals for AllowedPalIDs, BannedPalIDs, and per-Pal rule filenames. Use paldeck.cc/passives for DisallowedPassives.
File locations
| File | Purpose |
|---|---|
<...>/Pal/Binaries/Win64/PalDefender/Pals/ImportRules/Default.json |
Global import rules for all Pal templates. |
<...>/Pal/Binaries/Win64/PalDefender/Pals/ImportRules/<PalID>.json |
Optional per-Pal override. Search the PalID on Paldeck, then use that exact ID as the filename. Example: Anubis.json. |
<...>/Pal/Binaries/Win64/PalDefender/Pals/ImportRules/ExampleOverride.json |
Example file generated for reference. It is not a real Pal rule until copied and renamed. |
Keys
| Key | Type | Description |
|---|---|---|
PalSelectionMode |
string | Default.json only. AllowAllExceptBanned allows every Pal except BannedPalIDs. AllowOnlyListed allows only AllowedPalIDs. |
AllowedPalIDs |
array | Default.json only. PalID values allowed when PalSelectionMode is AllowOnlyListed. |
BannedPalIDs |
array | Default.json only. PalID values that are always denied. |
MaxValueLimitAction |
string | BlockImport denies templates above configured limits. ClampToMaxValues lowers values to the configured limits. |
DisallowedPassivesAction |
string | BlockImport denies templates with listed passives. RemoveFromPal removes listed passives before import. |
DisallowedPassives |
array | PassiveID values affected by DisallowedPassivesAction. |
Disabled |
bool | If true, disables import checks for the matching rule set. |
BanIfPalIsImpossible |
bool | If true, PalDefender can punish impossible Pal imports according to server settings. |
AllowGenderNone |
bool | If false, templates using Gender: "None" can be rejected by import checks. |
MaxLevel |
int | Highest allowed Pal level for imported templates. |
MaxRank |
int | Highest allowed partner skill rank for imported templates. |
PalSouls |
object | Maximum allowed Pal soul values: Health, Attack, Defense, CraftSpeed. |
IVs |
object | Maximum allowed IV values: Health, AttackMelee, AttackShot, Defense. |
Instruction set
- Start with
Default.json. Use it for server-wide policy. - Use per-Pal files only when one Pal needs different limits.
- Per-Pal files must be named with the Pal ID, for example
Anubis.json. - Do not put
PalSelectionMode,AllowedPalIDs, orBannedPalIDsin per-Pal files. Those belong inDefault.json. - Use
BlockImportif you want strict moderation. - Use
ClampToMaxValuesif you prefer to accept templates but reduce over-limit values. - Use
RemoveFromPalfor passives if you prefer automatic cleanup over a failed import. - Keep IDs exact and validate JSON before uploading.
Setup walkthrough
- Open or create
Pals/ImportRules/Default.json. - Decide the global Pal policy:
- Use
AllowAllExceptBannedwhen most Pals are allowed and you only want to block a few. - Use
AllowOnlyListedwhen imports should be limited to a curated list. - Decide the moderation style:
- Use
BlockImportfor strict servers where invalid templates should fail. - Use
ClampToMaxValueswhen you want to accept templates but reduce over-limit levels, ranks, souls, or IVs. - Use
RemoveFromPalfor passives when you want to strip unwanted passives instead of rejecting the entire template. - Add disallowed passives from paldeck.cc/passives.
- Add banned or allowed Pals from paldeck.cc/pals.
- Add a per-Pal override only when a specific Pal needs stricter or looser limits than the global file.
- Test with a small
PalTemplate.jsonfirst before importing large templates.
Common setups
Allow most Pals, block a few
Use this when normal admin rewards are allowed, but certain Pals should not be imported.
{
"PalSelectionMode": "AllowAllExceptBanned",
"AllowedPalIDs": [],
"BannedPalIDs": [
"JetDragon",
"BOSS_Anubis"
],
"MaxValueLimitAction": "BlockImport",
"DisallowedPassivesAction": "BlockImport",
"DisallowedPassives": [
"Legend"
],
"Disabled": false,
"BanIfPalIsImpossible": false,
"AllowGenderNone": false,
"MaxLevel": 65,
"MaxRank": 5,
"PalSouls": {
"Health": 20,
"Attack": 20,
"Defense": 20,
"CraftSpeed": 20
},
"IVs": {
"Health": 100,
"AttackMelee": 100,
"AttackShot": 100,
"Defense": 100
}
}
Only allow a curated list
Use this when player-imported templates should be limited to approved Pals.
{
"PalSelectionMode": "AllowOnlyListed",
"AllowedPalIDs": [
"Anubis",
"Kirin",
"WeaselDragon"
],
"BannedPalIDs": [],
"MaxValueLimitAction": "ClampToMaxValues",
"DisallowedPassivesAction": "RemoveFromPal",
"DisallowedPassives": [
"Legend",
"Vampire"
],
"Disabled": false,
"BanIfPalIsImpossible": false,
"AllowGenderNone": false,
"MaxLevel": 50,
"MaxRank": 4,
"PalSouls": {
"Health": 10,
"Attack": 10,
"Defense": 10,
"CraftSpeed": 10
},
"IVs": {
"Health": 80,
"AttackMelee": 80,
"AttackShot": 80,
"Defense": 80
}
}
In this setup, only the three listed PalID values can be imported. Over-limit values are reduced to the configured maximums, and the listed passives are removed from the Pal.
Default example
{
"PalSelectionMode": "AllowAllExceptBanned",
"AllowedPalIDs": [],
"MaxValueLimitAction": "BlockImport",
"DisallowedPassivesAction": "BlockImport",
"DisallowedPassives": [
"Legend",
"Vampire"
],
"Disabled": false,
"BanIfPalIsImpossible": false,
"BannedPalIDs": [
"JetDragon"
],
"AllowGenderNone": false,
"MaxLevel": 65,
"MaxRank": 5,
"PalSouls": {
"Health": 20,
"Attack": 20,
"Defense": 20,
"CraftSpeed": 20
},
"IVs": {
"Health": 100,
"AttackMelee": 100,
"AttackShot": 100,
"Defense": 100
}
}
Per-Pal override example
Anubis.json
{
"MaxValueLimitAction": "ClampToMaxValues",
"DisallowedPassivesAction": "RemoveFromPal",
"DisallowedPassives": [
"Legend",
"Vampire"
],
"AllowGenderNone": false,
"MaxLevel": 10,
"MaxRank": 3,
"PalSouls": {
"Health": 5,
"Attack": 5,
"Defense": 5,
"CraftSpeed": 5
},
"IVs": {
"Health": 50,
"AttackMelee": 50,
"AttackShot": 50,
"Defense": 50
}
}