Skip to content
This repository has been archived by the owner on Sep 19, 2022. It is now read-only.

Commit

Permalink
Fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigocam committed Feb 1, 2021
2 parents 320e2e3 + 4ffcb05 commit c083fd3
Show file tree
Hide file tree
Showing 20 changed files with 654 additions and 195 deletions.
97 changes: 47 additions & 50 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ edition = "2018"
default = ["opengl"]
terminal = ["minigene/terminal"]
opengl = ["minigene/opengl"]
# Note: A rendering backend must still be specified if running headlessly
headless = ["minigene/headless"]
wasm = ["wasm-bindgen", "minigene/wasm", "console_error_panic_hook", "opengl"]

[dependencies]
Expand Down
6 changes: 6 additions & 0 deletions assets/effector_defs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ defs:
effects:
- - GoldGainMultiplier
- MultiplicativeMultiplier: 2.0
Stun:
key: Stun
duration: 2.0
effects:
- - ActionPointRefillRate
- MultiplicativeMultiplier: 0.0
AdditionalAttack:
key: AdditionalAttack
duration: 0.0
Expand Down
12 changes: 6 additions & 6 deletions assets/leader_defs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@ defs:
skills:
- AttackSpeedIncrease
- SlowAOE
Generic3:
key: Generic3
name: "Leader3"
skills:
- DoubleDamage
- AOE
TreePersonLeader:
key: TreePersonLeader
name: "TreePersonLeader"
Expand All @@ -42,6 +36,12 @@ defs:
skills:
- GreedyTouch
- AirCorrosion
Erno:
key: Erno
name: "Erno"
skills:
- SpellSteal
- Telekinesis
SoulsCollector:
key: SoulsCollector
name: "SoulsCollector"
Expand Down
26 changes: 26 additions & 0 deletions assets/skill_defs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,32 @@ defs:
MinValue: 1.0
item_conditions: []
stat_effectors: []
SpellSteal:
key: SpellSteal
name: SpellSteal
friendly_name: spell_steal
description: Gain access to an ability belonging to a leader in range until the caster dies. Only one ability may be stolen at a time.
cooldown: 0.0
passive: true
conditions:
- stat_key: LeadersAround
condition:
MinValue: 1.0
item_conditions: []
stat_effectors: []
Telekinesis:
key: Telekinesis
name: Telekinesis
friendly_name: telekinesis
description: Hurls the nearest opponent at the second nearest opponent, stunning in an AOE around the landing site.
cooldown: 12.0
passive: true
conditions:
- stat_key: EnemiesAround
condition:
MinValue: 2.0
item_conditions: []
stat_effectors: []
StealSoul:
key: StealSoul
name: Steal Soul
Expand Down
12 changes: 10 additions & 2 deletions assets/stat_defs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ defs:
key: Health
name: health
friendly_name: HP
default_value: 100.0
default_value: 1000.0
min_value: ~
max_value: ~
icon_path: ~
Expand All @@ -24,6 +24,14 @@ defs:
min_value: ~
max_value: ~
icon_path: ~
LeadersAround:
key: LeadersAround
name: leaders_around
friendly_name: Leaders Around
default_value: 0.0
min_value: ~
max_value: ~
icon_path: ~
AttackSpeed:
key: AttackSpeed
name: attack_speed
Expand Down Expand Up @@ -76,7 +84,7 @@ defs:
key: ActionPointRefillRate
name: action_point_refill_rate
friendly_name: Action Point Refill Rate
default_value: 100.0
default_value: 15.0
min_value: 0
max_value: ~
icon_path: ~
Expand Down
Loading

0 comments on commit c083fd3

Please sign in to comment.