forked from CleverRaven/Cataclysm-DDA
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Density cleanup + minor stuff (CleverRaven#70176)
* I went too far * do not remove hydrocarbons * Cleanup what i fixed, but forgot to cleanup * use new values for test_mp3 wetness * Move test material to core to prevent order dependency errors * EOL * move test_material again, now to vanilla * revert material back to test_data file since ehughsbaird fixed the order dependancy issues
- Loading branch information
1 parent
33b1fd8
commit dd9e62c
Showing
26 changed files
with
180 additions
and
209 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,20 @@ | ||
[ | ||
{ | ||
"type": "enchantment", | ||
"id": "ench_teleportitis", | ||
"intermittent_activation": { "effects": [ { "frequency": "4 seconds", "spell_effects": [ { "id": "AEA_TELEPORT" } ] } ] } | ||
}, | ||
{ | ||
"type": "enchantment", | ||
"id": "ench_slow_aura", | ||
"values": [ { "value": "ATTACK_SPEED", "multiply": 1.5 }, { "value": "SPEED", "multiply": 0.5 } ] | ||
}, | ||
{ | ||
"id": "artifact_teleportitis_aura", | ||
"type": "ARMOR", | ||
"name": { "str": "strange pressure" }, | ||
"description": "You feel a strange force pressing you inwards and inside-out.", | ||
"weight": "1g", | ||
"volume": "1ml", | ||
"price": 3646, | ||
"symbol": "o", | ||
"color": "white", | ||
"flags": [ | ||
"AURA", | ||
"SEMITANGIBLE", | ||
"OVERSIZE", | ||
"ONLY_ONE", | ||
"TRADER_AVOID", | ||
"NO_TAKEOFF", | ||
"NONCONDUCTIVE", | ||
"UNBREAKABLE", | ||
"ALLOWS_NATURAL_ATTACKS" | ||
], | ||
"relic_data": { "passive_effects": [ { "id": "ench_teleportitis" } ] } | ||
"type": "effect_type", | ||
"name": [ "Strange Pressure" ], | ||
"desc": [ "You feel a strange force pressing you inwards and inside-out" ], | ||
"enchantments": [ | ||
{ | ||
"intermittent_activation": { "effects": [ { "frequency": "4 seconds", "spell_effects": [ { "id": "AEA_TELEPORT" } ] } ] } | ||
} | ||
] | ||
}, | ||
{ | ||
"id": "artifact_slow_aura", | ||
"type": "ARMOR", | ||
"name": { "str": "temporal distortion" }, | ||
"description": "A slight temporal distortion appears to be centered around you.", | ||
"weight": "1g", | ||
"volume": "1ml", | ||
"price": 3646, | ||
"symbol": "o", | ||
"color": "white", | ||
"flags": [ | ||
"AURA", | ||
"SEMITANGIBLE", | ||
"OVERSIZE", | ||
"ONLY_ONE", | ||
"TRADER_AVOID", | ||
"NO_TAKEOFF", | ||
"NONCONDUCTIVE", | ||
"UNBREAKABLE", | ||
"ALLOWS_NATURAL_ATTACKS" | ||
], | ||
"relic_data": { "passive_effects": [ { "id": "ench_slow_aura" } ] } | ||
"type": "effect_type", | ||
"name": [ "Temporal Distortion" ], | ||
"desc": [ "A slight temporal distortion appears to be centered around you" ], | ||
"enchantments": [ { "values": [ { "value": "ATTACK_SPEED", "multiply": 1.5 }, { "value": "SPEED", "multiply": 0.5 } ] } ] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.