This file contains hidden or 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
--For 0.13.13 and later there will be layer-10 through layer-15 that can be used. | |
local projectile_layer = "layer-13" | |
local suffix = "-blockable" | |
local function make_projectile_blockable (prototype_name) | |
local prototype = data.raw.projectile[prototype_name] | |
if not prototype then | |
return prototype_name | |
end | |
local newname = prototype.name .. "-blockable" |
This file contains hidden or 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
[entity-name] | |
air-filter-machine-mk1=空気清浄機 癸型 | |
air-filter-machine-mk2=空気清浄機 壬型 | |
air-filter-machine-mk3=空気清浄機 辛型 | |
air-filter-machine-mk4=空気清浄機 庚型 | |
air-filter-machine-mk5=空気清浄機 己型 | |
air-filter-machine-mk6=空気清浄機 戊型 | |
[item-name] | |
unused-air-filter=エアフィルタ |
This file contains hidden or 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
#!/bin/bash --posix | |
# -*- coding:utf-8 -*- | |
# === Coding shell scripting Memo ============================================== | |
# ${<name>#<pattern>} :: matching delete with shortest by forword. | |
# ${<name>##<pattern>} :: matching delete with longest by forword. | |
# ${<name>%<pattern>} :: matching delete with shortest by backword. | |
# ${<name>%%<pattern>} :: mathing delete with longest by backword. | |
# ${<name>/<before>/<after>} :: replace only first matching. | |
# ${<name>//<before>/<after>} :: replace all matching. |
This file contains hidden or 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
#!/bin/sh | |
# -*- coding:utf-8 posix -*- | |
# === Initialize shell environment ============================================= | |
#set -u # Just stop undefined values. | |
#set -e # Just stop error. | |
#set -x # Debug running command. | |
umask 0022 | |
export LC_ALL=C | |
export LANG=C |
NewerOlder