MakeGhostRoleWindow.xaml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <DefaultWindow Title="{Loc Make Ghost Role}"
  2. xmlns="https://spacestation14.io">
  3. <BoxContainer Orientation="Vertical">
  4. <BoxContainer Orientation="Horizontal">
  5. <Label Name="RoleEntityLabel" Text="Entity" />
  6. <Label Name="RoleEntity" Text="" />
  7. </BoxContainer>
  8. <BoxContainer Orientation="Horizontal">
  9. <Label Name="RoleNameLabel" Text="Role Name" />
  10. <LineEdit Name="RoleName" HorizontalExpand="True" />
  11. </BoxContainer>
  12. <BoxContainer Orientation="Horizontal">
  13. <Label Name="RoleDescriptionLabel" Text="Role Description" />
  14. <LineEdit Name="RoleDescription" HorizontalExpand="True" />
  15. </BoxContainer>
  16. <BoxContainer Orientation="Horizontal">
  17. <Label Name="RoleRulesLabel" Text="Role Rules" />
  18. <LineEdit Name="RoleRules" HorizontalExpand="True" Text="{Loc ghost-role-component-default-rules}" />
  19. </BoxContainer>
  20. <BoxContainer Orientation="Horizontal">
  21. <Label Name="MakeSentientLabel" Text="Make Sentient" />
  22. <CheckBox Name="MakeSentientCheckbox" />
  23. </BoxContainer>
  24. <BoxContainer Orientation="Horizontal">
  25. <Label Name="RaffleLabel" Text="Raffle Role?" />
  26. <OptionButton Name="RaffleButton" />
  27. </BoxContainer>
  28. <BoxContainer Name="RaffleCustomSettingsContainer" Orientation="Vertical" Visible="False">
  29. <BoxContainer Orientation="Horizontal">
  30. <Label Name="RaffleInitialDurationLabel" Text="Initial Duration (s)" />
  31. <SpinBox Name="RaffleInitialDuration" HorizontalExpand="True" />
  32. </BoxContainer>
  33. <BoxContainer Orientation="Horizontal">
  34. <Label Name="RaffleJoinExtendsDurationByLabel" Text="Joins Extend By (s)" />
  35. <SpinBox Name="RaffleJoinExtendsDurationBy" HorizontalExpand="True" />
  36. </BoxContainer>
  37. <BoxContainer Orientation="Horizontal">
  38. <Label Name="RaffleMaxDurationLabel" Text="Max Duration (s)" />
  39. <SpinBox Name="RaffleMaxDuration" HorizontalExpand="True" />
  40. </BoxContainer>
  41. </BoxContainer>
  42. <BoxContainer Orientation="Horizontal">
  43. <Button Name="MakeButton" Text="Make" />
  44. </BoxContainer>
  45. </BoxContainer>
  46. </DefaultWindow>