Chronicles of Darkness grimoire-Artifact PDF https://git.lain.church/TheStranjer/ShardsOfPower
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

13 行
423B

  1. class Condition
  2. attr_accessor :name, :rules_text, :beat, :resolution, :persistent, :authors, :possible_sources
  3. def initialize(name:, rules_text:, beat: "n/a", resolution:, persistent: false, authors:, possible_sources: nil)
  4. @name = name
  5. @rules_text = rules_text
  6. @beat = beat
  7. @resolution = resolution
  8. @persistent = persistent
  9. @authors = authors
  10. @possible_sources = possible_sources
  11. end
  12. end