- 施設に熱排出や副産物などのいわゆる副作用はない。なので、施設は基本的に置けば置くほど良い
- 複製人間1人でn施設 (例: 毛づくろい端末) を担当できるが、Ratopia市民は厳密に1人1施設 (例: 狩り拠点) しか担当できない
- (客としてサービス施設を利用するのは別、そちらは前の客が完了し次第すぐ次の客が利用できる)
- 加工のために必要な材料がない等、その施設の稼働条件を満たしていないときは、採掘・運搬・建設などの汎用タスクをこなす
- 植物の育て方は野生・菜園・農園の3種類あり、実は野生が最速で成長する
- 拠点近くの野生植物は大事にしよう。遠くの野生植物は、躊躇なく破壊して種を持ち帰ろう
- 樹木管理員 = 農業端末。名前に反して樹木に限らず任意の植物に対応。肥料などなく無条件で稼働できる
- 巣穴・ミズギンチャク = 間欠泉・火山。無限資源
https://gist.github.com/ujihisa/49294f9bdc4a57606fa973cdcf9a01aa を2024年04現在の最新の知見で書き直したもの。
- 工場はほぼImmutable Infrastructureで、足し算だけ考える
- コンベアがごちゃごちゃするのは気にしない
- MODちょっとを使う
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class C | |
def initialize | |
@size_x = 20 | |
@size_y = 20 | |
@dots = [] | |
@sushis = [] | |
end | |
def dot!(loc) | |
if 0 <= loc[0] && loc[0] < @size_x && |
https://gist.github.com/ujihisa/21549a8a3f5c775ef76db17f5912f935 を2023年2現在の最新の知見で書き直したもの。
Satisfactory快適プレイv1 https://gist.github.com/ujihisa/807f1075803f6e6be07f898f09375123 をほぼ全部書き換えたもの。あれからだいぶプレイしていろいろわかったので...
- 同一の加工を行うグループは、隙間をあけず横に連結する
- 例: Iron OreからIron Ingotに変換するSmelterを4つ横に並べて、Conveyor SplitterとConveyour Mergerを正面と背後に置く
- 土地をどんどん使う
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import qualified Data.Map as Map | |
import qualified Data.List as List | |
data AST = Cons AST AST | Inst Char | Nil deriving Show | |
-- Just for debugging purpose | |
toSEXP :: AST -> String | |
toSEXP x = case toSEXPList x of | |
Just xs -> "(" ++ List.intercalate " " xs ++ ")" | |
Nothing -> toSEXP' x |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Assuming you walk by 4km/h | |
Vancouver Canucks - 32.913 seconds - Vancouver, British Columbia | |
Ottawa Senators - 30 minutes - Kanata, Ontario | |
Chicago Blackhawks - 42 minutes - Chicago, Illinois | |
Montréal Canadiens - 45 minutes - Montréal, Quebec | |
San Jose Sharks - 1 hours - Santa Clara, California | |
Winnipeg Jets - 1 hours - Winnipeg, Manitoba | |
Washington Capitals - 2 hours - Arlington, Virginia | |
Seattle Kraken - 2 hours - Seattle, Washington |
https://scrapbox.io/oxygen-not-included-appx/ に大事な要素をまとめておいた。そちらを見よ
https://scrapbox.io/oxygen-not-included-appx/ に大事な要素をまとめておいた。そちらを見よ
Oxygen Not Included攻略
ゲームの進行度を以下に10区切りしてみる
-
気体用パイプ 1kg/m
-
吸気ポンプ 500g/s
-
液体用パイプ 10kg/m
-
吸水ポンプ 液体10kg/s
-
コンベアレール 20kg/m
-
コンベアローダー 1000kg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# g/s | |
# both plants and critters are domestic | |
num_arbor_tree = 6 | |
lumber = 555.56 * num_arbor_tree | |
# ethanol_distiller | |
num_ethanol_distiller = lumber / 1000.0 | |
lumber = 0 | |
ethanol = 500.0 * num_ethanol_distiller |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[🐻Grouse](Green) Chalet Road 6.68% | |
[🚗Seymour](Blue) Boomerang 8.33% | |
[🚗Seymour](Blue) Sammy's Express 8.52% | |
[🚗Seymour](Green) Mushroom 8.72% | |
[🌮Revelstoke](Green) Ripper Connector 9.55% | |
[🌮Revelstoke](Blue) Ninja Traverse 10.20% | |
[🌮Revelstoke](Green) Downtowner 10.25% | |
[🐻Grouse](Green) Paradise 10.29% | |
[🚗Seymour](Blue) Maverick 11.11% | |
[🐻Grouse](Blue) Lower Peak 11.70% |
NewerOlder