public SpecialLittleChilli(SpecialComponent specialComponent)
     : base(specialComponent)
 {
     this.englishDecoration = "Little Chilli";
     this.chineseDecoration = "不是很辣";
     this.type = SpecialButton.SpecialType.LittleChilli;
 }
 public SpecialLittleOil(SpecialComponent specialComponent)
     : base(specialComponent)
 {
     this.englishDecoration = "Little Oil";
     this.chineseDecoration = "少油";
     this.type = SpecialButton.SpecialType.LittleOil;
 }
 public SpecialNoMSG(SpecialComponent specialComponent)
     : base(specialComponent)
 {
     this.englishDecoration = "No MSG";
     this.chineseDecoration = "这味精";
     this.type = SpecialButton.SpecialType.NoMSG;
 }
 public SpecialNoPork(SpecialComponent specialComponent)
     : base(specialComponent)
 {
     this.englishDecoration = "No Pork";
     this.chineseDecoration = "没有猪肉";
     this.type = SpecialButton.SpecialType.NoPork;
 }
Esempio n. 5
0
 public SpecialNoPeas(SpecialComponent specialComponent)
     : base(specialComponent)
 {
     this.englishDecoration = "No Peas";
     this.chineseDecoration = "豌豆";
     this.type = SpecialButton.SpecialType.NoPeas;
 }
 public SpecialNoShrimps(SpecialComponent specialComponent)
     : base(specialComponent)
 {
     this.englishDecoration = "No Shrimps";
     this.chineseDecoration = "没有虾";
     this.type = SpecialButton.SpecialType.NoShrimps;
 }
Esempio n. 7
0
 public SpecialNoWaterChestnuts(SpecialComponent specialComponent)
     : base(specialComponent)
 {
     this.englishDecoration = "No Water Chestnuts";
     this.chineseDecoration = "没有荸荠";
     this.type = SpecialButton.SpecialType.NoWaterChestnuts;
 }
 public SpecialSauceSeperate(SpecialComponent specialComponent)
     : base(specialComponent)
 {
     this.englishDecoration = "Sauce Seperate";
     this.chineseDecoration = "酱分开";
     this.type = SpecialButton.SpecialType.SauceSeperate;
 }
 public SpecialNoVegetables(SpecialComponent specialComponent)
     : base(specialComponent)
 {
     this.englishDecoration = "No Vegetables";
     this.chineseDecoration = "没有蔬菜";
     this.type = SpecialButton.SpecialType.NoVegetables;
 }
 public SpecialSpicy(SpecialComponent specialComponent)
     : base(specialComponent)
 {
     this.englishDecoration = "Spicy";
     this.chineseDecoration = "辣";
     this.type = SpecialButton.SpecialType.Spicy;
 }
 public SpecialExtraPancakes(SpecialComponent specialComponent)
     : base(specialComponent)
 {
     this.englishDecoration = "Extra Pancakes";
     this.chineseDecoration = "加煎饼";
     this.type = SpecialButton.SpecialType.ExtraPancakes;
 }
Esempio n. 12
0
 public SpecialLittleSalt(SpecialComponent specialComponent)
     : base(specialComponent)
 {
     this.englishDecoration = "Little Salt";
     this.chineseDecoration = "小盐";
     this.type = SpecialButton.SpecialType.LittleSalt;
 }
 public SpecialExtraHot(SpecialComponent specialComponent)
     : base(specialComponent)
 {
     this.englishDecoration = "Extra Chilli";
     this.chineseDecoration = "额外的辣椒";
     this.type = SpecialButton.SpecialType.ExtraHot;
 }
Esempio n. 14
0
 public SpecialNoSalt(SpecialComponent specialComponent)
     : base(specialComponent)
 {
     this.englishDecoration = "No Salt";
     this.chineseDecoration = "无盐";
     this.type = SpecialButton.SpecialType.NoSalt;
 }
Esempio n. 15
0
 public SpecialNoChilli(SpecialComponent specialComponent)
     : base(specialComponent)
 {
     this.englishDecoration = "No Chilli";
     this.chineseDecoration = "没有辣椒";
     this.type = SpecialButton.SpecialType.NoChilli;
 }
 public SpecialNoBeansprouts(SpecialComponent specialComponent)
     : base(specialComponent)
 {
     this.englishDecoration = "No Beansprouts";
     this.chineseDecoration = "没有豆芽";
     this.type = SpecialButton.SpecialType.NoBeanSprouts;
 }
 public SpecialDecorator(SpecialComponent baseComponent)
 {
     this.baseComponent = baseComponent;
 }