blob: 2a4af2636ed01cb34efca48f44c56feae08e14a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import sideShow from './assets/images/scenario-side_show.svg';
import dragonHunting from './assets/images/scenario-dragon_hunting.svg';
import raceAgainstTime from './assets/images/scenario-race_against_time.svg';
export const scenarios = {
'scenario-side_show': {
hashed: sideShow,
title: 'BattleTroops Scenario 1: Side Show',
},
'scenario-dragon_hunting': {
hashed: dragonHunting,
title: 'BattleTroops Scenario 2: Dragon Hunting',
},
'scenario-race_against_time': {
hashed: raceAgainstTime,
title: 'BattleTroops Scenario 3: Race Against Time',
},
}
|