0 of 0

File information

Last updated

Original upload

Created by

kittyowilder

Uploaded by

kittyowilder

Virus scan

Safe to use

Tags for this mod

About this mod

Adds two categories in the Pip-Boy and Containes for Radioactive Food and Syringes.
Añade dos categorías en el Pip-Boy y los Contenedores para los Alimentos Radiactivos y las Jeringuillas.

Requirements
Permissions and credits
This mod adds two new categories for the FallUI Item Sorter (FIS).
The two categories are "Radioactive Food" and "Syringues", to hold what their names say :)
Non-radioactive food stays in the Foods category.
All syringues (ammo for the Syringer weapon) are located in their own subcategory.

That is all.

Este mod añade dos nuevas categorías para el FallUI Item Sorter (FIS).
Las dos categorías son "Alimentos radiactivos" y "Jeringas", y contienen lo que dicen sus nombres :)
Los alimentos no radiactivos se quedan en la categoría de Alimentos.
Todas las jeringuillas (munición para el arma de Jeringuillas) se colocan en su propia subcategoría.

Eso es todo.




Instalation: Using a mod manager or dropping the extracted folder inside the Data folder. Safe to Install/Uninstall anytime.

Instalación: Usando un administrador de mods o soltando la carpeta extraída dentro de la carpeta de datos. Se puede instalar/desinstalar en cualquier momento.

Note: I am using the Complex Item Sorter script (in xEdit), and it labels Salisbury Steaks with the [Steak] tag. That way, it does not move to to the radioactive food subcategory despite it has the DamageRadiationChem effect. To get it in the new Radioactive Food category, you will have to change its label to [Meat] in CK, xEdit, or xTranslator (or alter the Complex Sorter rules to label it accordingly).

Nota: Yo uso el Complex Item Sorter (en xEdit), y éste etiqueta los Filetes rusos con la etiqueta [Steak]. De esa forma, no pasa a la subcategoría de alimentos radiactivos a pesar de que tiene asignado el efecto DamageRadiationChem. Para tenerlos en la nueva categoría de alimentos radiactivos, deberás cambiar su etiqueta a [Meat] en CK, xEdit o xTranslator (o modificar las reglas del Complex Sorter para etiquetarlo en consecuencia).


The xml file (RadFoodsSyringues.xml) can be found in Data/Interface/ItemSorter/FIS/Categories.Addons, and is:
El archivo xml (RadFoodsSyringues.xml) se puede encontrar en Data/Interface/ItemSorter/FIS/Categories.Addons, y es así:

Spoiler:  
Show

<?xml version="1.0" ?>

<TagCategories>

<taggroups>
<taggroup id="radfoods" icontag="RadFood" name="«Radioactive Food»" tags="RadFood,Meat,Vegetables,Leaf,Shroom,Cake,Canned,Boxed" />
<taggroup id="foods" remove-tags="RadFood,Meat,Vegetables,Leaf,Shroom,Cake,Canned,Boxed" />
<taggroup id="syringes" icontag="SyringerDart" name="«Syringes»" tags="SyringerDart" />
</taggroups>

<pipboy>
<tab id='pip_aid' add-taggroups="radfoods" />
<tab id='pip_aid' add-taggroups="syringes" />
</pipboy>

<container>
<tab id='con_aid_food' add-taggroups="radfoods" />
<tab id='con_aid_gen' add-taggroups="syringes" />
</container>

</TagCategories>

To translate to your language, just modify the two name="..." statements.