phantasmal-world/src/hunt_optimizer/gui/HelpView.ts

27 lines
1.2 KiB
TypeScript
Raw Normal View History

2019-09-14 20:23:06 +08:00
import { el } from "../../core/gui/dom";
import { ResizableWidget } from "../../core/gui/ResizableWidget";
import "./HelpView.css";
export class HelpView extends ResizableWidget {
constructor() {
super(
el.div(
{ class: "hunt_optimizer_HelpView" },
el.p({
text:
2019-09-14 20:25:12 +08:00
"Add some items with the combo box on the left to see the optimal combination of hunt methods on the right.",
2019-09-14 20:23:06 +08:00
}),
el.p({
text:
2019-09-14 20:25:12 +08:00
'At the moment a hunt method is simply a quest run-through. Partial quest run-throughs are coming. View the list of methods on the "Methods" tab. Each method takes a certain amount of time, which affects the optimization result. Make sure the times are correct for you.',
2019-09-14 20:23:06 +08:00
}),
el.p({ text: "Only enemy drops are considered. Box drops are coming." }),
el.p({
text:
2019-09-14 20:25:12 +08:00
"The optimal result is calculated using linear optimization. The optimizer takes into account rare enemies and the fact that pan arms can be split in two.",
2019-09-14 20:23:06 +08:00
}),
),
);
}
}