OGC:Astrologer (5e Feat)
Astrologer
You have studied the celestial bodies and know how to glean clues about the future from them. You gain the following benefits:
- Increase your Intelligence or Wisdom score by 1, to a maximum of 20.
- Your proficiency bonus is doubled on Intelligence (Arcana, Religion, and Nature) checks relating to heavenly bodies, astrology, prophecy, and magical creatures and religions linked to the celestial bodies (such as lycanthropes and sun-cults). A skill you are not proficient in does not gain this benefit.
- You can always discern true north while you can see any celestial body (including the sun).
- Dim light doesn’t impose disadvantage on your Wisdom (Perception) checks relying on sight.
- You can cast astromancy without expending a spell slot. Once you cast it, you can’t cast it again in this way until you finish a long rest.
Back to Open Game Content → Character Options → Feats
Back to Main Page → Publication List → Publishers → EN World → EN Publishing
gollark: As you can see, it has to explicitly manage a "waitgroup" for synchronization and whatnot.
gollark: ```go log.Println("Fetching feeds...") var feeds []*rss.Feed var wg sync.WaitGroup for _, source := range sources { wg.Add(1) src := source go func() { defer wg.Done() feed, err := rss.Fetch(src.String()) if err != nil { log.Printf("Error fetching %s: %s", src.String(), err.Error()) return } feeds = append(feeds, feed) log.Printf("Fetched %s", feed.Title) }() } wg.Wait()```So here is something which is meant to fetch a bunch of RSS feeds in parallel.
gollark: Somewhat? There doesn't seem to be a better way to do it.
gollark: Hold on, I worked on a tiny bit of Go code, I'll dredge some up as a sample.
gollark: It does not avoid those. You just reimplement them oddly.
This article is issued from Dandwiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.