aboutsummaryrefslogtreecommitdiff
path: root/src/scalevalapokalypsi/Model/Entities/NPCs/Cultist.scala
blob: fa5602e36bd4cd256096dcb333176cabdf4b4e15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53

package scalevalapokalypsi.Model.Entities.NPCs

import scala.collection.mutable.Buffer
import scalevalapokalypsi.Model.*
import scalevalapokalypsi.Model.Entities.*
import scala.util.Random

class Cultist(
	adventure: Adventure,
	identifier: String,
	initialLocation: Area,
	initialHP: Int = 100,
	maxHP: Int = 100
) extends NPC(adventure, identifier, initialLocation, initialHP, maxHP):

	private val damage = 20

	override def getDialog: String =
		"Verta! Lisää verta!"

	override def act(): Unit =
		val possibleVictims = this.location
			.getEntities
			.filter(_ != this)
			.filter(_ match
				case c: Cultist => false
				case other => true
			)
			.toVector
		val index: Int =
			if possibleVictims.isEmpty then 0
			else Random.between(0, possibleVictims.length)
		if !possibleVictims.isEmpty then
			this.location.observeEvent(
				this.curse(possibleVictims(index))
			)


	private def curse(entity: Entity): Event =
		entity.takeDamage(this.damage)
		Event(
			Map.from(Vector((
				entity,
				s"${this.name} lausuu pimeän loitsun. Näet varjon pyyhältävän sinua kohti ja sinut valtaa kylmyys.\n" +
					s"${entity.condition(0)}"
			))),
			s"${this.name} käyttää kirousta henkilöön ${entity.name}\n" +
				s"${entity.condition(1)}"
		)

end Cultist