Chronicles of Darkness grimoire-Artifact PDF https://git.lain.church/TheStranjer/ShardsOfPower
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
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