Starsector API
Loading...
Searching...
No Matches
Smuggling.java
Go to the documentation of this file.
1package com.fs.starfarer.api.impl.campaign.econ;
2
3import java.util.Map;
4
8public class Smuggling extends BaseMarketConditionPlugin {
9
10 public Smuggling() {
11 }
12
13 public void apply(String id) {
14 }
15
16 public void unapply(String id) {
17 market.getStability().unmodify(id);
18 }
19
20 @Override
21 public void setParam(Object param) {
22 }
23
24 public Map<String, String> getTokenReplacements() {
25 Map<String, String> tokens = super.getTokenReplacements();
26
27 return tokens;
28 }
29
30 @Override
31 public String[] getHighlights() {
32 return null;
33 }
34
35 @Override
36 public boolean isTransient() {
37 return false;
38 }
39
40
41}