Feat/hidden domain (#113)

Summary
新增秘境探索,属于多人活动,每N年触发一次
Closes #105
This commit is contained in:
4thfever
2026-01-31 20:43:42 +08:00
committed by GitHub
parent efa663febe
commit 0315dca6e6
34 changed files with 843 additions and 29 deletions

View File

@@ -0,0 +1,5 @@
id,name,desc,max_realm,danger_prob,hp_loss_percent,drop_prob,cd_years,open_prob
,Name,Description,Max Realm,Danger Probability,HP Loss %,Drop Probability,CD (Years),Open Probability (Monthly)
hidden_domain_wood,Remnant of Myriad Woods,"A fragment of the ancient Azure Emperor's Garden that shattered eons ago, now perpetually shrouded in multicolored, toxic miasma. The broken laws within cause spirit plants to grow madly, with shapeshifting demon vines and man-eating flowers lurking in the shadows. Rumor has it that if one can traverse the outer ""Dead Silence Forest"" and find the ""Azure Wood Spirit Spring"" at the core, even mortal grass can become immortal medicine. However, one must beware of the guardian beasts, twisted by millennia of consuming medicinal dregs, who thirst for fresh blood.",QI_REFINEMENT,0.3,0.3,0.2,5,0.05
hidden_domain_fire,Valley of Fallen Immortals,"The site where a human mighty figure perished together with the Flame Demon Emperor ten thousand years ago. To this day, the earth veins still spew unextinguishable Earthly Baleful Fire, dyeing the sky blood-red. Buried beneath the scorched earth are countless broken swords and halberds, and at midnight, battle souls roar, reenacting the tragic slaughter of the past. Training here requires enduring the constant pain of fire poison eroding the heart, but it is excellent for comprehending ancient battle intent. Those with deep destiny might even pick up fragment artifacts left by ancient cultivators from the magma depths or glimpse a trace of the Great Dao.",FOUNDATION_ESTABLISHMENT,0.4,0.4,0.15,10,0.03
hidden_domain_palace,Nine Heavens Void Palace,"A magnificent complex of palaces floating above the Nine Heavens Wind Layer. Only those with great perseverance can pass through the spatial rifts on the periphery that tear at the flesh. The interior is filled with ancient restrictions and layered illusion arrays; one wrong step means body and soul destruction, lost forever in the void. Although the Scripture Pavilion has collapsed over time, every page of the golden books and jade scrolls scattering in the void turbulence records supreme supernatural powers capable of causing a bloodbath in the cultivation world. Only peak Core Formation cultivators can barely withstand the pressure from the ancient times to spy a glimpse of immortal opportunity.",CORE_FORMATION,0.5,0.5,0.1,20,0.01
1 id name desc max_realm danger_prob hp_loss_percent drop_prob cd_years open_prob
2 Name Description Max Realm Danger Probability HP Loss % Drop Probability CD (Years) Open Probability (Monthly)
3 hidden_domain_wood Remnant of Myriad Woods A fragment of the ancient Azure Emperor's Garden that shattered eons ago, now perpetually shrouded in multicolored, toxic miasma. The broken laws within cause spirit plants to grow madly, with shapeshifting demon vines and man-eating flowers lurking in the shadows. Rumor has it that if one can traverse the outer "Dead Silence Forest" and find the "Azure Wood Spirit Spring" at the core, even mortal grass can become immortal medicine. However, one must beware of the guardian beasts, twisted by millennia of consuming medicinal dregs, who thirst for fresh blood. QI_REFINEMENT 0.3 0.3 0.2 5 0.05
4 hidden_domain_fire Valley of Fallen Immortals The site where a human mighty figure perished together with the Flame Demon Emperor ten thousand years ago. To this day, the earth veins still spew unextinguishable Earthly Baleful Fire, dyeing the sky blood-red. Buried beneath the scorched earth are countless broken swords and halberds, and at midnight, battle souls roar, reenacting the tragic slaughter of the past. Training here requires enduring the constant pain of fire poison eroding the heart, but it is excellent for comprehending ancient battle intent. Those with deep destiny might even pick up fragment artifacts left by ancient cultivators from the magma depths or glimpse a trace of the Great Dao. FOUNDATION_ESTABLISHMENT 0.4 0.4 0.15 10 0.03
5 hidden_domain_palace Nine Heavens Void Palace A magnificent complex of palaces floating above the Nine Heavens Wind Layer. Only those with great perseverance can pass through the spatial rifts on the periphery that tear at the flesh. The interior is filled with ancient restrictions and layered illusion arrays; one wrong step means body and soul destruction, lost forever in the void. Although the Scripture Pavilion has collapsed over time, every page of the golden books and jade scrolls scattering in the void turbulence records supreme supernatural powers capable of causing a bloodbath in the cultivation world. Only peak Core Formation cultivators can barely withstand the pressure from the ancient times to spy a glimpse of immortal opportunity. CORE_FORMATION 0.5 0.5 0.1 20 0.01

View File

@@ -30,7 +30,7 @@ id,key,name,exclusion_keys,desc,rarity,condition,effects
28,SIMP,Simp,ALOOF;INDIFFERENT;MEAN;SHY,"You are exceptionally friendly to those of the opposite sex with outstanding appearance.",N,,
29,ENVIOUS,Envious,FRIENDLY;ENTHUSIASTIC,"You easily harbor hostility towards those who far exceed you.",N,,
30,TRANSMIGRATOR,Transmigrator,,"You come from modern society and miss everything about it.",SR,,
31,CHILD_OF_FORTUNE,Child of Fortune,,"Naturally blessed with fortune, more likely to encounter lucky breaks.",SSR,,"{extra_fortune_probability: 0.02, extra_battle_strength_points: 2, extra_breakthrough_success_rate: 0.05}"
31,CHILD_OF_FORTUNE,Child of Fortune,,"Naturally blessed with fortune, more likely to encounter lucky breaks.",SSR,,"{extra_fortune_probability: 0.02, extra_battle_strength_points: 2, extra_breakthrough_success_rate: 0.05, extra_hidden_domain_drop_prob: 0.2, extra_hidden_domain_danger_prob: -0.1}"
32,SWORD_FANATIC,Sword Fanatic,LAZY;TIMID,"Entering the Dao through the sword, the sword is your life.",SR,,"[{when: 'avatar.weapon.type == ""SWORD""', extra_weapon_proficiency_gain: 1.0, extra_battle_strength_points: 3}]"
33,SCHEMING,Scheming,RASH;ENTHUSIASTIC;EXTROVERTED,"Hiding your true self, acting cautiously, and good at calculating.",R,,
34,LOYAL,Loyal,ALOOF;INDIFFERENT;MEAN,"Values promises and integrity, never betrays the person you've acknowledged.",R,,
1 id key name exclusion_keys desc rarity condition effects
30 28 SIMP Simp ALOOF;INDIFFERENT;MEAN;SHY You are exceptionally friendly to those of the opposite sex with outstanding appearance. N
31 29 ENVIOUS Envious FRIENDLY;ENTHUSIASTIC You easily harbor hostility towards those who far exceed you. N
32 30 TRANSMIGRATOR Transmigrator You come from modern society and miss everything about it. SR
33 31 CHILD_OF_FORTUNE Child of Fortune Naturally blessed with fortune, more likely to encounter lucky breaks. SSR {extra_fortune_probability: 0.02, extra_battle_strength_points: 2, extra_breakthrough_success_rate: 0.05} {extra_fortune_probability: 0.02, extra_battle_strength_points: 2, extra_breakthrough_success_rate: 0.05, extra_hidden_domain_drop_prob: 0.2, extra_hidden_domain_danger_prob: -0.1}
34 32 SWORD_FANATIC Sword Fanatic LAZY;TIMID Entering the Dao through the sword, the sword is your life. SR [{when: 'avatar.weapon.type == "SWORD"', extra_weapon_proficiency_gain: 1.0, extra_battle_strength_points: 3}]
35 33 SCHEMING Scheming RASH;ENTHUSIASTIC;EXTROVERTED Hiding your true self, acting cautiously, and good at calculating. R
36 34 LOYAL Loyal ALOOF;INDIFFERENT;MEAN Values promises and integrity, never betrays the person you've acknowledged. R

View File

@@ -15,3 +15,4 @@ Action,You have a series of actionable commands. Pay attention to effects, restr
Equipment & Elixir,Weapons, auxiliary equipment, and elixirs provide stat bonuses. Owning good gear or taking high-quality elixirs brings great benefits.
Shopping,You can buy Qi Refinement level elixirs and weapons in City regions. Elixirs are consumed immediately for buffs. Buying weapons switches your weapon type.
Auction,Mysterious auctions occur at uncertain intervals, potentially offering rare goods.
Hidden Domain,Hidden domains open every few years. Exploring them entails risks but may yield high-ranking artifacts and techniques.
1 title desc
15 Equipment & Elixir Weapons
16 Shopping You can buy Qi Refinement level elixirs and weapons in City regions. Elixirs are consumed immediately for buffs. Buying weapons switches your weapon type.
17 Auction Mysterious auctions occur at uncertain intervals
18 Hidden Domain Hidden domains open every few years. Exploring them entails risks but may yield high-ranking artifacts and techniques.