src

Go monorepo.
git clone git://code.dwrz.net/src
Log | Files | Refs

low-quality.go (1333B)


      1 package category
      2 
      3 import dqs "code.dwrz.net/src/pkg/dqs/portion"
      4 
      5 // Low Quality
      6 var (
      7 	FriedFoods = Category{
      8 		Name: "Fried Foods",
      9 		Portions: []dqs.Portion{
     10 			{Points: -2},
     11 			{Points: -2},
     12 			{Points: -2},
     13 			{Points: -2},
     14 			{Points: -2},
     15 			{Points: -2},
     16 		},
     17 		HighQuality: false,
     18 	}
     19 
     20 	LQBeverages = Category{
     21 		Name: "Low Quality Beverages",
     22 		Portions: []dqs.Portion{
     23 			{Points: -2},
     24 			{Points: -2},
     25 			{Points: -2},
     26 			{Points: -2},
     27 			{Points: -2},
     28 			{Points: -2},
     29 		},
     30 		HighQuality: false,
     31 	}
     32 
     33 	Other = Category{
     34 		Name: "Other",
     35 		Portions: []dqs.Portion{
     36 			{Points: -1},
     37 			{Points: -2},
     38 			{Points: -2},
     39 			{Points: -2},
     40 			{Points: -2},
     41 			{Points: -2},
     42 		},
     43 		HighQuality: false,
     44 	}
     45 
     46 	ProcessedMeat = Category{
     47 		Name: "Processed Meat",
     48 		Portions: []dqs.Portion{
     49 			{Points: -2},
     50 			{Points: -2},
     51 			{Points: -2},
     52 			{Points: -2},
     53 			{Points: -2},
     54 			{Points: -2},
     55 		},
     56 		HighQuality: false,
     57 	}
     58 
     59 	RefinedGrains = Category{
     60 		Name: "Refined Grains",
     61 		Portions: []dqs.Portion{
     62 			{Points: -1},
     63 			{Points: -1},
     64 			{Points: -2},
     65 			{Points: -2},
     66 			{Points: -2},
     67 			{Points: -2},
     68 		},
     69 		HighQuality: false,
     70 	}
     71 
     72 	Sweets = Category{
     73 		Name: "Sweets",
     74 		Portions: []dqs.Portion{
     75 			{Points: -2},
     76 			{Points: -2},
     77 			{Points: -2},
     78 			{Points: -2},
     79 			{Points: -2},
     80 			{Points: -2},
     81 		},
     82 		HighQuality: false,
     83 	}
     84 )