GuideDefine.lua 693 B

12345678910111213141516171819202122232425262728293031323334353637
  1. --------------------------------
  2. -- 文件名 : GuideDefine.lua
  3. -- 文件说明 : 创角流程相关定义
  4. -- 创建时间 : 2024/12/11
  5. -- 创建人 : FC
  6. --------------------------------
  7. -- createRoleReward
  8. -- 需要发送奖励的行为 和奖励
  9. -- guide.lua
  10. --[[
  11. [子行为] =
  12. {
  13. [main_guide ID] = {
  14. [sub_guide ID] = {奖励}
  15. }
  16. }
  17. ]]
  18. tGuidePrizeBehavior =
  19. {
  20. ["createRoleReward"] = {
  21. [100] = {
  22. [104] = {{1203,1}, {118, 10}, {101, 100000000}},
  23. },
  24. },
  25. }
  26. -- 新手引导主ID
  27. tGuideNoJumpInfo =
  28. {
  29. -- main_guideID
  30. [100] = {
  31. -- nSubStep 步骤
  32. [3] = 1,
  33. }
  34. }