aboutsummaryrefslogtreecommitdiff
path: root/src/scalevalapokalypsi/Model/SingEffects.scala
blob: 23b7d3736b31fe54efdb5f0c7196a39ff25136b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package scalevalapokalypsi.Model

import scalevalapokalypsi.Model.Entities.Entity
import scala.collection.immutable.Map

trait SingEffect(val target: Entity):
	def apply(singQuality: Float): Event

class DefaultSingAttack(target: Entity) extends SingEffect(target):
	def apply(singQuality: Float): Event =
		this.target.takeDamage((singQuality * 50).toInt) // TODO: remove magic value
		val condition = this.target.condition
		Event(Map.empty, "") // The conditions are automatically shown to
		                     // clients through takeDamage, but other effects
		                     // should explain the changes they have.