26 lines
740 B
Python
26 lines
740 B
Python
|
from ..game_content import ContentPack
|
||
|
from ..mod_registry import register_mod_content_pack
|
||
|
from ...data.skill import Skill
|
||
|
from ...mods.mod_data import ModNames
|
||
|
from ...strings.skill_names import ModSkill
|
||
|
|
||
|
register_mod_content_pack(ContentPack(
|
||
|
ModNames.luck_skill,
|
||
|
skills=(Skill(name=ModSkill.luck, has_mastery=False),)
|
||
|
))
|
||
|
|
||
|
register_mod_content_pack(ContentPack(
|
||
|
ModNames.socializing_skill,
|
||
|
skills=(Skill(name=ModSkill.socializing, has_mastery=False),)
|
||
|
))
|
||
|
|
||
|
register_mod_content_pack(ContentPack(
|
||
|
ModNames.cooking_skill,
|
||
|
skills=(Skill(name=ModSkill.cooking, has_mastery=False),)
|
||
|
))
|
||
|
|
||
|
register_mod_content_pack(ContentPack(
|
||
|
ModNames.binning_skill,
|
||
|
skills=(Skill(name=ModSkill.binning, has_mastery=False),)
|
||
|
))
|