Conditions | 1 |
Paths | 1 |
Total Lines | 21 |
Code Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | public function __construct(Mefadriel $mefadriel) |
||
18 | { |
||
19 | parent::__construct( |
||
20 | new MefadrielDialogContext(), |
||
21 | new DecisionCollection([]), |
||
22 | $mefadriel, |
||
23 | new NpcDialogOption( |
||
24 | 'Hey, you. You are finally awake.', |
||
25 | new PlayerDialogOptionCollection([ |
||
26 | new PlayerDialogOption( |
||
27 | 'Who are you?', |
||
28 | new NpcDialogOption( |
||
29 | 'My name is Mefadriel. I joined this miserable camp when they marched at south.', |
||
30 | new PlayerDialogOptionCollection([]), |
||
31 | ), |
||
32 | ), |
||
33 | new QuitDialogOption( |
||
34 | 'Farewell.', |
||
35 | new NpcDialogOption( |
||
36 | 'See you soon.', |
||
37 | new PlayerDialogOptionCollection([]), |
||
38 | ), |
||
45 |