「NEC特殊文字」として有名な13区は標準化もされていて資料が豊富であるため省略。
字形のソースは http://www.kt.rim.or.jp/~aotaka/pc/character.htm
2バイト半角英数。 JIS X 0201 ラテン文字集合に近いが、形状から考えて別の文字を指している可能性のある符号位置がある。
// Copyright 2024 Masaki Hara | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
// | |
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
// | |
// THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE O |
「NEC特殊文字」として有名な13区は標準化もされていて資料が豊富であるため省略。
字形のソースは http://www.kt.rim.or.jp/~aotaka/pc/character.htm
2バイト半角英数。 JIS X 0201 ラテン文字集合に近いが、形状から考えて別の文字を指している可能性のある符号位置がある。
UI-OSF-USLP 共同技術資料 日本語EUCの定義と解説 | |
日本語 EUC の定義 | |
const isMZ = true; | |
const actors: ActorsJson = JSON.parse(await Deno.readTextFile("data/Actors.json")); | |
const commonEvents: CommonEventsJson = JSON.parse(await Deno.readTextFile("data/CommonEvents.json")); | |
const enemies: EnemiesJson = JSON.parse(await Deno.readTextFile("data/Enemies.json")); | |
const systemData: SystemJson = JSON.parse(await Deno.readTextFile("data/System.json")); | |
const mapInfo: MapInfosJson = JSON.parse(await Deno.readTextFile("data/MapInfos.json")); | |
const tilesets: TilesetsJson = JSON.parse(await Deno.readTextFile("data/Tilesets.json")); | |
function modifyPath(path: string): string { | |
const dot = path.lastIndexOf("."); |
こちらの入門情報を参照してください https://gist.github.com/qnighy/393b132ef431023653b6098a91602830
Kinky Dungeonとは拘束具をテーマにしたローグライクです。 ※性的な内容を含むため注意
https://ada18980.itch.io/kinky-dungeon/
v4系とv5系があります。
(リンク先は適当に選んだもので他意はありません)
2023年現在、X(Twitter) は外部リンクに対して強い制限を課しています。特に特定の外部SNS (YouTube, Instagram など) やセンシティブコンテンツの多いサイト (DLsiteなど) ではペナルティがあると言われています。
エリスディスノミアなど、Kagura Gamesのゲームは健全版としてナーフされていて、真価を発揮させるにはパッチを適用する必要がある。パッチはKagura Gamesのストアから取得できる。
ティアキン には白龍という大型の魔物が出現する。この魔物からは高価な素材が取得できるが、うまくやるとゲームを半分放置しながら「ながら」作業で金策ができるので、そのルートをメモしておく。
白龍はドラゴンの一種で、ハイラル上空をゲーム内時間で約4日 (実時間で約1.5時間) かけて周回している。
白龍は攻撃をせず接触ダメージもないため、そのまま乗り続けることができる。
--- rpg_core.js.orig 2023-04-08 17:40:07.800576175 +0900 | |
+++ rpg_core.js 2023-04-08 17:50:18.204989538 +0900 | |
@@ -1654,6 +1654,7 @@ | |
}; | |
Bitmap.request = function(url){ | |
+ url = url.replace("%", "%25"); | |
var bitmap = Object.create(Bitmap.prototype); | |
bitmap._defer = true; | |
bitmap.initialize(); |