Update - 1.11.0.113

EN: 1.11.0.113
CN: 1.11.0.114
JP: 1.11.0.118
KR: 1.11.0.118
This commit is contained in:
SL1900
2026-06-02 16:00:00 +09:00
parent 343b24c91b
commit dcc2c4a2a9
621 changed files with 518699 additions and 4157 deletions
@@ -10,6 +10,7 @@ local ModuleManager = require("GameCore.Module.ModuleManager")
local SDKManager = CS.SDKManager.Instance
local AttrConfig = require("GameCore.Common.AttrConfig")
local Actor2DManager = require("Game.Actor2D.Actor2DManager")
local LocalData = require("GameCore.Data.LocalData")
local mapProcCtrl = {
[GameEnum.starTowerRoomType.BattleRoom] = "BattleRoom",
[GameEnum.starTowerRoomType.EliteBattleRoom] = "BattleRoom",
@@ -2433,13 +2434,28 @@ function StarTowerLevelData:ReBattle()
NovaAPI.DispatchEventWithData("Level_Restart", nil, {})
safe_call_cs_func(CS.AdventureModuleHelper.LevelStateChanged, false)
end
function StarTowerLevelData:GetRecommondPotential(tbPotentialData)
local tbPotential = {}
for _, mapData in ipairs(tbPotentialData) do
table.insert(tbPotential, mapData.Id)
function StarTowerLevelData:IsPreselectionData()
return self.mapPreselectionData ~= nil
end
function StarTowerLevelData:GetPotenRecommendStatus()
local bPotentialRecommend = false
local ispreSelect = PlayerData.StarTower:IsPreselectionData()
if not ispreSelect then
return bPotentialRecommend, ispreSelect
end
local bPotentialRecommend = true
local bPa = LocalData.GetPlayerLocalData("PotentialAllSwitchRecomm")
if nil ~= bPa then
bPotentialRecommend = bPa
else
local nState = ConfigTable.GetConfigNumber("PotentialAllSwitchRecomm")
bPotentialRecommend = nState == 1
end
return bPotentialRecommend, true
end
function StarTowerLevelData:GetRecommendList(tbPotential)
local tbRecommend = {}
if self.mapPreselectionData ~= nil then
local tbRecommend = {}
for k, v in ipairs(self.mapPreselectionData.tbCharPotential) do
if k == 1 then
if self.tbTeam[k] == v.nCharId then
@@ -2463,6 +2479,16 @@ function StarTowerLevelData:GetRecommondPotential(tbPotentialData)
end
end
end
end
return tbRecommend
end
function StarTowerLevelData:GetRecommondPotential(tbPotentialData)
local tbPotential = {}
for _, mapData in ipairs(tbPotentialData) do
table.insert(tbPotential, mapData.Id)
end
if self.mapPreselectionData ~= nil then
local tbRecommend = self:GetRecommendList(tbPotential)
return tbRecommend
end
local ret = {}
+4 -2
View File
@@ -745,7 +745,8 @@ GameEnum.activityQuestCompleteCond = {
ActivityGoldenSpyAccCompleteTask = 147,
ActivityGoldenSpyAccUseSkill = 148,
ActivityPenguinCardClearScore = 149,
ActivityPenguinCardClearStar = 150
ActivityPenguinCardClearStar = 150,
ActivityPenguinCardTotalScore = 151
}
GameEnum.chatCond = {
CharacterAcquire = 5,
@@ -1845,7 +1846,8 @@ GameEnum.activityType = {
PenguinCard = 18,
ThrowGift = 19,
GoldenSpy = 20,
Double = 21
Double = 21,
HistoryStory = 22
}
GameEnum.activityOpenType = {
None = 0,
@@ -121,7 +121,7 @@ function PostalStoryCtrl:RefreshGridInfo(grid, gridIndex, bBranch, nBranchIndex)
NovaAPI.SetTMPText(txtComplete, ConfigTable.GetUIText("RoguelikeBuild_Manage_FilterPass"))
local isUnlock, tbResult = ActivityAvgData:IsUnlock(avgcfg.ConditionId)
local isReaded = ActivityAvgData:IsStoryReaded(storyId)
local bOpen, nOpenTime = ActivityAvgData:IsOpen(avgcfg.StoryId)
local bOpen, nOpenTime = ActivityAvgData:IsOpen(avgcfg.StoryId, self.nActId)
local nIndex = 0
if isUnlock then
nIndex = bBranch and BRANCH_GRID_INDEX or gridIndex
@@ -125,7 +125,7 @@ function ViewfinderStoryCtrl:RefreshGridInfo(grid, gridIndex, bBranch, nBranchIn
NovaAPI.SetTMPText(txtComplete, ConfigTable.GetUIText("RoguelikeBuild_Manage_FilterPass"))
local isUnlock, tbResult = ActivityAvgData:IsUnlock(avgcfg.ConditionId)
local isReaded = ActivityAvgData:IsStoryReaded(storyId)
local bOpen, nOpenTime = ActivityAvgData:IsOpen(avgcfg.StoryId)
local bOpen, nOpenTime = ActivityAvgData:IsOpen(avgcfg.StoryId, self.nActId)
local nIndex = 0
if isUnlock then
nIndex = bBranch and BRANCH_GRID_INDEX or gridIndex
@@ -212,7 +212,7 @@ function ActivityLevelsSelectCtrl:Awake()
end
function ActivityLevelsSelectCtrl:OnEnable()
self.isOpenLvMsg = false
self:ShowBossInfo(false)
self:ShowBossInfo(false, true)
self.timeTab = {}
EventManager.Hit(EventId.SetTransition)
self.SelectTogPreLvLock = nil
@@ -437,10 +437,10 @@ end
function ActivityLevelsSelectCtrl:OnBtnClick_CloseBossInfo()
self._mapNode.rtBossAni:Play("rtBoss_out")
self:AddTimer(1, 0.2, function()
self:ShowBossInfo(false)
self:ShowBossInfo(false, false)
end, true, true, true)
end
function ActivityLevelsSelectCtrl:ShowBossInfo(isShow)
function ActivityLevelsSelectCtrl:ShowBossInfo(isShow, isOnEnable)
self.isOpenLvMsg = isShow
self._mapNode.rtBoss:SetActive(isShow)
self._mapNode.btnCloseBg.gameObject:SetActive(isShow)
@@ -448,7 +448,7 @@ function ActivityLevelsSelectCtrl:ShowBossInfo(isShow)
self.SelectObj:SetDefault(false)
self.SelectObj = nil
end
if not isShow then
if not isShow and not isOnEnable then
local isFour = self.currentTypeLvCount == 4
local tmpPadding = isFour and fourLvGroupPadding or twelveLvGroupPadding
if isFour then
@@ -698,7 +698,7 @@ function ActivityLevelsSelectCtrl:RefreshInstanceInfo(nType, nHard, isInit)
end
end
if self._mapNode.rtBoss.activeSelf == false then
self:ShowBossInfo(true)
self:ShowBossInfo(true, false)
self:AddTimer(1, 0.2, function()
self._mapNode.rtBossAni:Play("rtBoss_in")
end, true, true, true)
@@ -94,13 +94,13 @@ function TechStoryCtrl:RefreshPanel()
self:RefreshPersonality()
end
function TechStoryCtrl:RefreshPersonality()
local cfg = ConfigTable.GetData("ActivityStoryChapter", self.nChapterId)
local cfg = ConfigTable.GetData("ActivityStoryChapter", self.nActId)
local personalityId = cfg.PersonalityId
self._mapNode.goPersonalityRoot:SetActive(0 < personalityId)
if personalityId <= 0 then
return
end
local tbRetPercent, sTitle, sFace, tbPData, nTotalCount, sHead = PlayerData.ActivityAvg:CalcPersonality(personalityId, self.nChapterId, true)
local tbRetPercent, sTitle, sFace, tbPData, nTotalCount, sHead = PlayerData.ActivityAvg:CalcPersonality(personalityId, self.nChapterId)
NovaAPI.SetPersonalityRing(self._mapNode.goPersonality, tbRetPercent)
NovaAPI.SetTMPText(self._mapNode.txtCharName, sTitle)
NovaAPI.SetTMPText(self._mapNode.txtPersonalityPercent[1], math.floor(tbRetPercent[1] * 100) .. "%")
@@ -167,7 +167,7 @@ function TechStoryCtrl:RefreshGridInfo(grid, gridIndex)
NovaAPI.SetTMPText(txtComplete, ConfigTable.GetUIText("RoguelikeBuild_Manage_FilterPass"))
local isUnlock, tbResult = ActivityAvgData:IsUnlock(avgcfg.ConditionId)
local isReaded = ActivityAvgData:IsStoryReaded(storyId)
local bOpen, nOpenTime = ActivityAvgData:IsOpen(avgcfg.StoryId)
local bOpen, nOpenTime = ActivityAvgData:IsOpen(avgcfg.StoryId, self.nActId)
NovaAPI.CtrlDotweenAnimation(dotweenGear, isUnlock and bOpen and 1 or 0)
imgStory.gameObject:SetActive(true)
if bOpen and isUnlock then
@@ -148,7 +148,7 @@ function ActivitySwimCtrl:OnBtnClick_Go()
if actGroupCfg ~= nil then
if actGroupCfg.TransitionId ~= nil and actGroupCfg.TransitionId > 0 then
local callback = function()
EventManager.Hit(EventId.OpenPanel, PanelId.SwimTheme, actGroupCfg.Id)
EventManager.Hit(EventId.OpenPanel, PanelId.SwimTheme_11100, actGroupCfg.Id)
end
EventManager.Hit(EventId.SetTransition, actGroupCfg.TransitionId, callback)
else
@@ -86,7 +86,7 @@ function SwimThemeStory_11100Ctrl:RefreshDate()
NovaAPI.SetTMPText(self._mapNode.txtActivityDate, dateStr)
end
function SwimThemeStory_11100Ctrl:RefreshPersonality()
local cfg = ConfigTable.GetData("ActivityStoryChapter", self.nChapterId)
local cfg = ConfigTable.GetData("ActivityStoryChapter", self.nActId)
local personalityId = cfg.PersonalityId
self._mapNode.goPersonalityRoot:SetActive(0 < personalityId)
if personalityId <= 0 then
@@ -135,7 +135,7 @@ function SwimThemeStory_11100Ctrl:OnRefreshGrid(grid, index)
local reddot = RootNode:Find("RedDot")
local isUnlock, tbResult = ActivityAvgData:IsUnlock(avgcfg.ConditionId)
local isReaded = ActivityAvgData:IsStoryReaded(storyId)
local bOpen, nOpenTime = ActivityAvgData:IsOpen(avgcfg.StoryId)
local bOpen, nOpenTime = ActivityAvgData:IsOpen(avgcfg.StoryId, self.nActId)
local isFullUnlock = isUnlock and bOpen
goUnlock.gameObject:SetActive(isFullUnlock)
goComplete.gameObject:SetActive(isReaded and bOpen)
@@ -116,7 +116,8 @@ SwimTheme_11100Ctrl._mapNodeConfig = {
txtTaskProgressEnd = {sComponentName = "TMP_Text"},
redDotEntrance2 = {},
storyRedDot = {},
reddotLevel = {}
reddotLevel = {},
imgRemaineTime = {}
}
SwimTheme_11100Ctrl._mapEventConfig = {}
SwimTheme_11100Ctrl._mapRedDotConfig = {}
@@ -211,6 +212,7 @@ function SwimTheme_11100Ctrl:RefreshTime()
end
end
self._mapNode.imgEnd:SetActive(not bOpen)
self._mapNode.imgRemaineTime.gameObject:SetActive(bOpen)
local nOpenMonth, nOpenDay, nEndMonth, nEndDay, nOpenYear, nEndYear = self.SwimThemeData:GetActGroupDate()
local strOpenDay = string.format("%d", nOpenDay)
local strEndDay = string.format("%d", nEndDay)
@@ -201,7 +201,7 @@ function ChristmasStoryCtrl:RefreshStoryNode(goNode, index, isBranch, callback)
local animator = animRoot:GetComponent("Animator")
local goOpen = animRoot.transform:Find("goOpen")
local goUnOpen = isBranch == false and goNode.transform:Find("goUnOpen") or goNode.transform.parent:Find("goUnOpen")
local bOpen, nOpenTime = actAvgData:IsOpen(avgId)
local bOpen, nOpenTime = actAvgData:IsOpen(avgId, self.nActId)
btnStoryNode.gameObject:SetActive(true)
goOpen.gameObject:SetActive(bOpen)
goUnOpen.gameObject:SetActive(not bOpen)
@@ -367,7 +367,7 @@ function ChristmasStoryCtrl:RefreshNeedHideNode()
for i = 1, #self.tbStoryNode do
local goNode = self.tbStoryNode[i]
local avgId = goNode.node.name
local bOpen = actAvgData:IsOpen(avgId)
local bOpen = actAvgData:IsOpen(avgId, self.nActId)
local avgCfg = actAvgData:GetStoryCfgData(avgId)
local isUnlock = actAvgData:IsUnlock(avgCfg.ConditionId)
local bShowTimelock = false
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -325,7 +325,7 @@ return {
param = {
4,
"avg3_100",
"emoji_awkward",
"emoji_awkward_a",
"0",
"",
false,
+1 -1
View File
@@ -10023,7 +10023,7 @@ return {
param = {
1,
"avg3_100",
"等等,太快了太快了。==W==你完全不需要整的吗……?!",
"等等,太快了太快了。==W==你完全不需要整的吗……?!",
0,
"",
false,
+1 -1
View File
@@ -2807,7 +2807,7 @@ return {
cmd = "SetTalk",
param = {
9,
"avg3_214",
"星辉之眼研究员",
"但是这样下去,我们离被炒的日子也不远了。上次的数值提升,是什么时候的事了?",
0,
"",
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -8985,7 +8985,7 @@ return {
param = {
0,
"avg3_215",
"果然还是瞒不住你,领新联合种业前进的人不能背负着这种仇恨。",
"果然还是瞒不住你,领新联合种业前进的人不能背负着这种仇恨。",
1,
"",
false,
+63 -4
View File
@@ -222,7 +222,7 @@ return {
},
{
id = "avg1_140",
name = "***",
name = "斯帕克拉",
name_bg_color = "#91aca8",
ver = "1.11.0"
},
@@ -315,6 +315,12 @@ return {
name_bg_color = "#c553a5",
ver = "1.6.0"
},
{
id = "avg1_160",
name = "***",
name_bg_color = "#b0e0f6",
ver = "1.13.0"
},
{
id = "avg1_163",
name = "格蕾霍恩",
@@ -348,6 +354,12 @@ return {
name_bg_color = "#0ABEC5",
ver = "1.10.0"
},
{
id = "avg2_944",
name = "***",
name_bg_color = "#0ABEC5",
ver = "1.12.0"
},
{
id = "avg2_945",
name = "***",
@@ -360,6 +372,18 @@ return {
name_bg_color = "#0ABEC5",
ver = "1.9.0"
},
{
id = "avg2_947",
name = "***",
name_bg_color = "#0ABEC5",
ver = "1.13.0"
},
{
id = "avg2_948",
name = "***",
name_bg_color = "#0ABEC5",
ver = "1.13.0"
},
{
id = "avg2_949",
name = "微风小枭",
@@ -1086,7 +1110,7 @@ return {
},
{
id = "avg3_212",
name = "***",
name = "莱欧",
name_bg_color = "#cd5d4b",
ver = "1.11.0"
},
@@ -1116,13 +1140,13 @@ return {
},
{
id = "avg3_221",
name = "***",
name = "兔子派",
name_bg_color = "#789eba",
ver = "1.11.0"
},
{
id = "avg3_222",
name = "***",
name = "机械小狗",
name_bg_color = "#a5cdc3",
ver = "1.11.0"
},
@@ -2757,6 +2781,41 @@ return {
name_bg_color = "#0ABEC5",
reuse = "avg3_209"
},
{
id = "avg3_1300",
name = "柔光工匠A",
name_bg_color = "#0ABEC5",
reuse = "avg3_143",
ver = "1.11.0"
},
{
id = "avg3_1301",
name = "柔光工匠B",
name_bg_color = "#0ABEC5",
reuse = "avg3_144",
ver = "1.11.0"
},
{
id = "avg3_1302",
name = "柔光工匠C",
name_bg_color = "#0ABEC5",
reuse = "avg3_141",
ver = "1.11.0"
},
{
id = "avg3_1303",
name = "格蕾霍恩A",
name_bg_color = "#0ABEC5",
reuse = "avg1_163",
ver = "1.11.0"
},
{
id = "avg3_1304",
name = "***",
name_bg_color = "#8e65ad",
reuse = "avg1_114",
ver = "1.12.0"
},
{
id = "avg4_100",
name = "菈露发光",
+8 -1
View File
@@ -178,7 +178,7 @@ return {
{
id = 140,
icon = "Icon/Head/head_14001_S",
name = "***",
name = "斯帕克拉",
landmark = "移动中,请联系本人",
signature = "无事勿扰",
ver = "1.11.0"
@@ -346,6 +346,13 @@ return {
landmark = "",
signature = ""
},
{
id = 989,
icon = "Icon/Head/head_group_S",
name = "防失联小组",
landmark = "",
signature = "拉黑不退群,退群不拉黑"
},
{
id = 9152,
icon = "Icon/Head/head_npc15201_S",
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+127
View File
@@ -0,0 +1,127 @@
return {
{
cmd = "SetGroupId",
param = {"14001"}
},
{
cmd = "SetCharL2D",
param = {
"avg1_140",
3,
"none",
"",
0
}
},
{
cmd = "SetCharL2D",
param = {
"avg1_140",
0,
"avg_emoji_think",
"",
0
}
},
{
cmd = "SetCharL2D",
param = {
"avg1_140",
0,
"none",
"chat_a",
0
}
},
{
cmd = "SetTalk",
param = {
0,
"avg1_140",
"",
0,
"",
false,
"",
"呵呵,這下又找到靈感了。",
""
}
},
{
cmd = "SetTalk",
param = {
0,
"avg1_140",
"",
0,
"",
false,
"",
"接下來三天…不,兩天,我可能會走不開。當然,如果有急事找我的話,隨時聯絡喔~",
""
}
},
{
cmd = "SetGroupId",
param = {"14002"}
},
{
cmd = "SetCharL2D",
param = {
"avg1_140",
3,
"none",
"",
0
}
},
{
cmd = "SetCharL2D",
param = {
"avg1_140",
0,
"avg_emoji_star",
"",
0
}
},
{
cmd = "SetCharL2D",
param = {
"avg1_140",
0,
"none",
"presents_a",
0
}
},
{
cmd = "SetTalk",
param = {
0,
"avg1_140",
"",
0,
"",
false,
"",
"收獲了不少有趣的材料。",
""
}
},
{
cmd = "SetTalk",
param = {
0,
"avg1_140",
"",
0,
"",
false,
"",
"嗯…有些似乎也在我的需求清單上。能不能商量一下,分我一點怎麼樣?",
""
}
},
{cmd = "End"}
}
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -5,7 +5,7 @@ return {
"ep_mainline_001",
"Act Two",
"From the Ghost Ship",
"Two strange rabbit girls rescued you. Theyre heading out to find the source of the ghost ship's glow.",
"Two strange rabbit girls rescued you. They're heading out to find the source of the ghost ship's glow.",
0
}
},
@@ -4476,7 +4476,7 @@ return {
"",
false,
"",
"Wow, I'm impressed you manage sail out this far.==RT==I honestly thought this was just a regular fishing boat...",
"Wow, I'm impressed you managed to sail out this far.==RT==I honestly thought this was just a regular fishing boat...",
""
}
},
+2 -2
View File
@@ -1812,7 +1812,7 @@ return {
"",
false,
"",
"Since then, the light has appeared every few years. Whether it's a coincidence or not, it always shows up after continuous summer downpours. And since thats when storms are most frequent, no one dares to go out to sea.",
"Since then, the light has appeared every few years. Whether it's a coincidence or not, it always shows up after continuous summer downpours. And since that's when storms are most frequent, no one dares to go out to sea.",
""
}
},
@@ -3539,7 +3539,7 @@ return {
"",
false,
"",
"Sounds good, but what if ==SEX=='s actually bad person?",
"Sounds good, but what if ==SEX=='s actually a bad person?",
""
}
},
+2 -2
View File
@@ -2420,7 +2420,7 @@ return {
"",
false,
"",
"She said \"You've got a trustworthy scent, Boss\".... To be honest, I don't really get it either.",
"She said \"You've got a trustworthy scent, Boss\"... To be honest, I don't really get it either.",
""
}
},
@@ -5157,7 +5157,7 @@ return {
"",
false,
"",
"We wont know for sure until we find them. They might have already left.",
"We won't know for sure until we find them. They might have already left.",
""
}
},
+3 -3
View File
@@ -5,7 +5,7 @@ return {
"ep_mainline_001",
"Act Five",
"Seeing is Deceiving",
"All the clues suggest that their grandma lied.==RT==The \"ghost ship\" is merely a decoy to mislead others.==RT==\"Facing the truth requires courage.\"",
"All the clues suggest that their grandma lied.==RT==The \"Ghost Ship\" is merely a decoy to mislead others.==RT==\"Facing the truth requires courage.\"",
0
}
},
@@ -1148,7 +1148,7 @@ return {
"",
false,
"",
"Agh—! That's Blinding!",
"Agh—! That's blinding!",
""
}
},
@@ -3744,7 +3744,7 @@ return {
"",
false,
"",
"She didn't get hurt, yet pretended to be seriously injured...==W== Was it to deepen peoples fear of the Ghost Ship?",
"She didn't get hurt, yet pretended to be seriously injured...==W== Was it to deepen people's fear of the Ghost Ship?",
""
}
},
+6 -6
View File
@@ -2341,7 +2341,7 @@ return {
"",
false,
"",
"She always admired Granny, hoping to grow into a seafaring Trekker as strong and capable as she was.==W== Im worried… What if the truth wasnt what Granny told us...",
"She always admired Granny, hoping to grow into a seafaring Trekker as strong and capable as she was.==W== I'm worried… What if the truth wasn't what Granny told us...",
""
}
},
@@ -3983,7 +3983,7 @@ return {
"",
false,
"",
"Ugh... Since when did Shia left...",
"Ugh... Since when did Shia leave...",
""
}
},
@@ -4094,7 +4094,7 @@ return {
"",
false,
"",
"Dont worry, dreams and reality are always the opposite.",
"Don't worry, dreams and reality are always the opposite.",
""
}
},
@@ -4719,7 +4719,7 @@ return {
"",
false,
"",
"Alright, Ill let it go this time. I know she's just trying to do what's best for me. We are family, after all.",
"Alright, I'll let it go this time. I know she's just trying to do what's best for me. We are family, after all.",
""
}
},
@@ -4784,7 +4784,7 @@ return {
"",
false,
"",
"Back then, everyone thought I was a weak, cowardly kid and didnt want to play with me… Shia was the first person who really believed in me.",
"Back then, everyone thought I was a weak, cowardly kid and didn't want to play with me… Shia was the first person who really believed in me.",
""
}
},
@@ -5869,7 +5869,7 @@ return {
"",
false,
"",
" <size=50>Wh-What IS that thing—?!",
"<size=50>Wh-What IS that thing—?!",
""
}
},
+1 -1
View File
@@ -5655,7 +5655,7 @@ return {
"",
false,
"",
" S-Sorry, boss! I was just bringing you a late-night snack ... and forgot to knock...",
"S-Sorry, boss! I was just bringing you a late-night snack ... and forgot to knock...",
""
}
},
+2 -2
View File
@@ -506,7 +506,7 @@ return {
"",
false,
"",
"Karin... I'm sure your grandma wouldn't lie to you. If she wasn't telling the truth, it must've been a white lie.",
"Karin... I'm sure she wouldn't lie. If she wasn't telling the truth, it must've been a white lie.",
""
}
},
@@ -4010,7 +4010,7 @@ return {
"",
false,
"",
"She glances around. A green light flickers in the darkness, like a familiar summon.",
"She glances around. A green light flickers in the darkness, like a familiar summons.",
""
}
},
+7 -7
View File
@@ -497,7 +497,7 @@ return {
"",
false,
"",
"What we need to do is \"devalue\" the diary—to make her think it's worthless, and trick her to hand it over willingly.",
"What we need to do is \"devalue\" the diary—to make her think it's worthless, and trick her into handing it over willingly.",
""
}
},
@@ -1769,7 +1769,7 @@ return {
"",
false,
"",
"That's right! Only a person selfish like you would think everyone's the same! Grandma would never sell whale bones!",
"That's right! Only a person as selfish as you would think everyone's the same! Grandma would never sell whale bones!",
""
}
},
@@ -7813,7 +7813,7 @@ return {
"",
false,
"",
"What did I say? Such magical thing must be worth a lot.",
"What did I say? Such a magical thing must be worth a lot.",
""
}
},
@@ -9034,7 +9034,7 @@ return {
"",
false,
"",
"M-Maybe there are still places where Lantern Artifacts haven't been put in use...",
"M-Maybe there are still places where Lantern Artifacts haven't been put to use...",
""
}
},
@@ -11161,7 +11161,7 @@ return {
"",
false,
"",
"==RT====RT====RT====A-1==\"... Calor Month 18th, Cloudy.==RT==This is my third day on the island. Whally helped me recover the boat, but it was too damaged to repair.\"==P====RT====RT==\"==A-1==Calor Month 21st, Cloudy.==RT==I found a dying Hexhorn Whale on the beach. Whally was very sad. I could only watch as it stopped breathing.==RT==I collected some shells and placed them beside it, hoping it would have a long, peaceful dream.\"==P====RT====RT====A-1==\"Calor Month 30th, Sunny.==RT==I built a new ship and was ready to go back. Whally didn't want me to leave. I don't know if I can protect their home from other people in the future.\"",
"==RT====RT====RT====A-1==\"... Calor Month 18th, Cloudy.==RT==This is my third day on the island.==RT==Whally helped me recover the boat, but it was too damaged to repair.\"==P====RT====RT==\"==A-1==Calor Month 21st, Cloudy.==RT==I found a dying Hexhorn Whale on the beach. Whally was very sad. I could only watch as it stopped breathing.==RT==I collected some shells and placed them beside it,==RT==hoping it would have a long, peaceful dream.\"==P====RT====RT====A-1==\"Calor Month 30th, Sunny.==RT==I built a new ship and was ready to go back. Whally didn't want me to leave.==RT==I don't know if I can protect their home from other people in the future.\"",
""
}
},
@@ -11607,7 +11607,7 @@ return {
"",
false,
"",
"==RT====RT====A-1==\"Shia, congratulations. You've figured out the truth through your own efforts. You must be an amazing seafaring Trekker now.\"==P====RT====RT====A-1==\"The source of the light is these bones. It is neither a ghost ship, nor treasures.==RT==You must be surprised, right? Only a third-rate Trekker would be discouraged by it not being treasures.\"==P====RT====RT====A-1==\"I believe you understand, that this island is the sacred resting place of Hexhorn Whales. To prevent greedy people from disturbing them, I will make up a ghost ship story. Please continue to protect this island in my place.\"",
"==RT====RT====A-1==\"Shia, congratulations. You've figured out the truth through your own efforts.==RT==You must be an amazing seafaring Trekker now.\"==P====RT====RT====A-1==\"The source of the light is these bones. It is neither a ghost ship, nor treasures.==RT==You must be surprised, right?==RT==Only a third-rate Trekker would be discouraged by it not being treasures.\"==P====RT====RT====A-1==\"I believe you understand, that this island is the sacred resting place of Hexhorn Whales.==RT==To prevent greedy people from disturbing them,==RT==I will make up a ghost ship story. Please continue to protect this island in my place.\"",
""
}
},
@@ -11805,7 +11805,7 @@ return {
"",
false,
"",
"==RT====RT====A-1==\"I'm sorry, Shia. Please forgive me for keeping this from you all this time. You were still young, and I was worried you might accidentally let it slip. It would bring too much danger, and I fear I couldn't protect you.\"==P====RT====RT====A-1==\"You must be all grown up now, right? I really wish I could see what you've become... But unfortunately, I won't have the chance.==P====RT====RT====A-1==Alright, don't be sad. Even if I've left this world, I will always be by your side, just like the sea.==P====RT====RT====A-1==<size=60>You are my most precious treasure.\"",
"==RT====RT====A-1==\"I'm sorry, Shia. Please forgive me for keeping this from you all this time.==RT==You were still young, and I was worried you might accidentally let it slip.==RT==It would bring too much danger, and I fear I couldn't protect you.\"==P====RT====RT====A-1==\"You must be all grown up now, right? I really wish I could see what you've become... But unfortunately, I won't have the chance.==P====RT====RT====A-1==Alright, don't be sad. Even if I've left this world, I will always be by your side, just like the sea.==P====RT====RT====A-1==<size=60>You are my most precious treasure.\"",
""
}
},
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+103 -8
View File
@@ -178,7 +178,7 @@ return {
{
id = "avg1_131",
name = "Bloc",
name_bg_color = "#0ABEC5"
name_bg_color = "#fff1c0"
},
{
id = "avg1_132",
@@ -222,7 +222,7 @@ return {
},
{
id = "avg1_140",
name = "***",
name = "Sparkla",
name_bg_color = "#91aca8",
ver = "1.11.0"
},
@@ -315,6 +315,12 @@ return {
name_bg_color = "#c553a5",
ver = "1.6.0"
},
{
id = "avg1_160",
name = "***",
name_bg_color = "#b0e0f6",
ver = "1.13.0"
},
{
id = "avg1_163",
name = "Greyhorn",
@@ -348,6 +354,12 @@ return {
name_bg_color = "#0ABEC5",
ver = "1.10.0"
},
{
id = "avg2_944",
name = "***",
name_bg_color = "#0ABEC5",
ver = "1.12.0"
},
{
id = "avg2_945",
name = "***",
@@ -360,6 +372,18 @@ return {
name_bg_color = "#0ABEC5",
ver = "1.9.0"
},
{
id = "avg2_947",
name = "***",
name_bg_color = "#0ABEC5",
ver = "1.13.0"
},
{
id = "avg2_948",
name = "***",
name_bg_color = "#0ABEC5",
ver = "1.13.0"
},
{
id = "avg2_949",
name = "Breezy Owl",
@@ -922,7 +946,7 @@ return {
{
id = "avg3_179",
name = "Misha",
name_bg_color = "#0ABEC5"
name_bg_color = "#8695b8"
},
{
id = "avg3_180",
@@ -942,12 +966,12 @@ return {
{
id = "avg3_183",
name = "Joseph",
name_bg_color = "#0ABEC5"
name_bg_color = "#97b8a0"
},
{
id = "avg3_184",
name = "Lady Gray",
name_bg_color = "#0ABEC5"
name_bg_color = "#b2cdc9"
},
{
id = "avg3_185",
@@ -1086,7 +1110,7 @@ return {
},
{
id = "avg3_212",
name = "***",
name = "Leona",
name_bg_color = "#cd5d4b",
ver = "1.11.0"
},
@@ -1116,13 +1140,13 @@ return {
},
{
id = "avg3_221",
name = "***",
name = "Rabbit Pie",
name_bg_color = "#789eba",
ver = "1.11.0"
},
{
id = "avg3_222",
name = "***",
name = "Mechanical Dog",
name_bg_color = "#a5cdc3",
ver = "1.11.0"
},
@@ -2721,6 +2745,77 @@ return {
name_bg_color = "#5a91ca",
reuse = "avg1_164"
},
{
id = "avg3_1294",
name = "Desert Scorpion Grunt F B",
name_bg_color = "#0ABEC5",
reuse = "avg3_208"
},
{
id = "avg3_1295",
name = "Desert Scorpion Grunt F C",
name_bg_color = "#0ABEC5",
reuse = "avg3_208"
},
{
id = "avg3_1296",
name = "Desert Scorpion Grunt F D",
name_bg_color = "#0ABEC5",
reuse = "avg3_208"
},
{
id = "avg3_1297",
name = "Desert Scorpion Grunt M B",
name_bg_color = "#0ABEC5",
reuse = "avg3_209"
},
{
id = "avg3_1298",
name = "Desert Scorpion Grunt M C",
name_bg_color = "#0ABEC5",
reuse = "avg3_209"
},
{
id = "avg3_1299",
name = "Desert Scorpion Grunt M D",
name_bg_color = "#0ABEC5",
reuse = "avg3_209"
},
{
id = "avg3_1300",
name = "NGO Artisan A",
name_bg_color = "#0ABEC5",
reuse = "avg3_143",
ver = "1.11.0"
},
{
id = "avg3_1301",
name = "NGO Artisan B",
name_bg_color = "#0ABEC5",
reuse = "avg3_144",
ver = "1.11.0"
},
{
id = "avg3_1302",
name = "NGO Artisan C",
name_bg_color = "#0ABEC5",
reuse = "avg3_141",
ver = "1.11.0"
},
{
id = "avg3_1303",
name = "Greyhorn A",
name_bg_color = "#0ABEC5",
reuse = "avg1_163",
ver = "1.11.0"
},
{
id = "avg3_1304",
name = "***",
name_bg_color = "#8e65ad",
reuse = "avg1_114",
ver = "1.12.0"
},
{
id = "avg4_100",
name = "Laru Bright Ver",
@@ -133,6 +133,13 @@ return {
landmark = "No. 9 Tenth Street, Port Bellin",
signature = "Keeping it real!"
},
{
id = 131,
icon = "Icon/Head/head_13101_S",
name = "Bloc",
landmark = "Bloc's Traveling Stall",
signature = "Keep up! Spending money is light work"
},
{
id = 132,
icon = "Icon/Head/head_13201_S",
@@ -168,6 +175,14 @@ return {
landmark = "No. 10, Meister Street, Philae",
signature = "On leave. Return date TBD."
},
{
id = 140,
icon = "Icon/Head/head_14001_S",
name = "Sparkla",
landmark = "On the move. Contact me in person.",
signature = "Do not disturb unless necessary.",
ver = "1.11.0"
},
{
id = 141,
icon = "Icon/Head/head_14101_S",
@@ -331,6 +346,13 @@ return {
landmark = "",
signature = ""
},
{
id = 989,
icon = "Icon/Head/head_group_S",
name = "Anti-Ghosting Squad",
landmark = "",
signature = "If you block us, don't leave the chat. If you leave, don't block."
},
{
id = 9152,
icon = "Icon/Head/head_npc15201_S",
+1
View File
@@ -28,6 +28,7 @@ return {
["==SEX19=="] = {"maid", "butler"},
["==SEX1=="] = {"She", "He"},
["==SEX20=="] = {"shirt", "undershirt"},
["==SEX21=="] = {"lady", "gentleman"},
["==SEX2=="] = {"Her", "His"},
["==SEX3=="] = {"her", "his"},
["==SEX4=="] = {"her", "him"},
+1 -1
View File
@@ -6350,7 +6350,7 @@ return {
"",
false,
"",
"それなら星輝附属大学に通う生徒に==RT==声をかけてみるはどうだろう?",
"それなら星輝附属大学に通う生徒に==RT==声をかけてみるはどうだろう?",
""
}
},
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+127
View File
@@ -0,0 +1,127 @@
return {
{
cmd = "SetGroupId",
param = {"14001"}
},
{
cmd = "SetCharL2D",
param = {
"avg1_140",
3,
"none",
"",
0
}
},
{
cmd = "SetCharL2D",
param = {
"avg1_140",
0,
"avg_emoji_think",
"",
0
}
},
{
cmd = "SetCharL2D",
param = {
"avg1_140",
0,
"none",
"chat_a",
0
}
},
{
cmd = "SetTalk",
param = {
0,
"avg1_140",
"",
0,
"",
false,
"",
"聞いて聞いて!いいアイデアを思いついたの!",
""
}
},
{
cmd = "SetTalk",
param = {
0,
"avg1_140",
"",
0,
"",
false,
"",
"これから2日……ううん、3日は手が離せないかも。==RT==あ、でもあなたからの連絡なら、いつでも大歓迎だよ♪",
""
}
},
{
cmd = "SetGroupId",
param = {"14002"}
},
{
cmd = "SetCharL2D",
param = {
"avg1_140",
3,
"none",
"",
0
}
},
{
cmd = "SetCharL2D",
param = {
"avg1_140",
0,
"avg_emoji_star",
"",
0
}
},
{
cmd = "SetCharL2D",
param = {
"avg1_140",
0,
"none",
"presents_a",
0
}
},
{
cmd = "SetTalk",
param = {
0,
"avg1_140",
"",
0,
"",
false,
"",
"おもしろい素材がたくさん手に入ったよ。",
""
}
},
{
cmd = "SetTalk",
param = {
0,
"avg1_140",
"",
0,
"",
false,
"",
"中には私の欲しいものリストに入ってるのもありそうだし……==RT==よければ、少し分けてくれないかな?",
""
}
},
{cmd = "End"}
}
+1 -1
View File
@@ -479,7 +479,7 @@ return {
"",
false,
"",
"この前ステキネマで見たの",
"この前ステキネマで見たの",
""
}
},
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -3,7 +3,7 @@ return {
cmd = "SetIntro",
param = {
"ep_mainline_001",
"最終話",
"エピローグ",
"最高の夏に向かって",
"カーロタウンに戻ったあと、ミスティは真相をニュースとして公表し、マーレの不名誉な噂は一蹴された。ようやく全員が揃ったところで、楽しい夏の宴が幕を開けたのだった。",
0
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -3427,7 +3427,7 @@ return {
"",
false,
"",
"そ、そうすごむな。覚えているさ、急ぎの用なんだろう?==RT==それよりアルベド、凍結を解除した従業員は、==RT==君が新しく雇った研修生らしいな?",
"そ、そうすごむな。覚えているさ、急ぎの用なんだろう?==RT==それよりアルベド、凍結を解除した従業員は、==RT==君が新しく雇った研修生らしいな?",
""
}
},
+1 -1
View File
@@ -13720,7 +13720,7 @@ return {
"",
false,
"",
"ですから、彼の思い描いた理想が途方もない夢物語であったとしても……==RT==私は祖父の意思を引き継ぎ、それをこの手で現実したい。==RT==そう思うのは……==W==いけないことでしょうか?",
"ですから、彼の思い描いた理想が途方もない夢物語であったとしても……==RT==私は祖父の意思を引き継ぎ、それをこの手で現実したい。==RT==そう思うのは……==W==いけないことでしょうか?",
""
}
},
+80 -10
View File
@@ -178,7 +178,7 @@ return {
{
id = "avg1_131",
name = "ブロッチ",
name_bg_color = "#0ABEC5"
name_bg_color = "#fff1c0"
},
{
id = "avg1_132",
@@ -222,7 +222,7 @@ return {
},
{
id = "avg1_140",
name = "***",
name = "スパクル",
name_bg_color = "#91aca8",
ver = "1.11.0"
},
@@ -922,7 +922,7 @@ return {
{
id = "avg3_179",
name = "ミューシャ",
name_bg_color = "#0ABEC5"
name_bg_color = "#8695b8"
},
{
id = "avg3_180",
@@ -942,12 +942,12 @@ return {
{
id = "avg3_183",
name = "ヨセフ",
name_bg_color = "#0ABEC5"
name_bg_color = "#97b8a0"
},
{
id = "avg3_184",
name = "マダムガイスト",
name_bg_color = "#0ABEC5"
name_bg_color = "#b2cdc9"
},
{
id = "avg3_185",
@@ -1086,7 +1086,7 @@ return {
},
{
id = "avg3_212",
name = "***",
name = "レオ",
name_bg_color = "#cd5d4b",
ver = "1.11.0"
},
@@ -1116,13 +1116,13 @@ return {
},
{
id = "avg3_221",
name = "***",
name = "ラボラビ",
name_bg_color = "#789eba",
ver = "1.11.0"
},
{
id = "avg3_222",
name = "***",
name = "机械小狗",
name_bg_color = "#a5cdc3",
ver = "1.11.0"
},
@@ -2681,13 +2681,13 @@ return {
},
{
id = "avg3_1287",
name = "デザートゲイル女性一般兵",
name = "デザートゲイル女性一般兵A",
name_bg_color = "#0ABEC5",
reuse = "avg3_208"
},
{
id = "avg3_1288",
name = "デザートゲイル男性一般兵",
name = "デザートゲイル男性一般兵A",
name_bg_color = "#0ABEC5",
reuse = "avg3_209"
},
@@ -2721,6 +2721,76 @@ return {
name_bg_color = "#5a91ca",
reuse = "avg1_164"
},
{
id = "avg3_1294",
name = "デザートゲイル女性一般兵B",
name_bg_color = "#0ABEC5",
reuse = "avg3_208"
},
{
id = "avg3_1295",
name = "デザートゲイル女性一般兵C",
name_bg_color = "#0ABEC5",
reuse = "avg3_208"
},
{
id = "avg3_1296",
name = "デザートゲイル女性一般兵D",
name_bg_color = "#0ABEC5",
reuse = "avg3_208"
},
{
id = "avg3_1297",
name = "デザートゲイル男性一般兵B",
name_bg_color = "#0ABEC5",
reuse = "avg3_209"
},
{
id = "avg3_1298",
name = "デザートゲイル男性一般兵C",
name_bg_color = "#0ABEC5",
reuse = "avg3_209"
},
{
id = "avg3_1299",
name = "デザートゲイル男性一般兵D",
name_bg_color = "#0ABEC5",
reuse = "avg3_209"
},
{
id = "avg3_1300",
name = "柔光工匠A",
name_bg_color = "#0ABEC5",
reuse = "avg3_143",
ver = "1.11.0"
},
{
id = "avg3_1301",
name = "柔光工匠B",
name_bg_color = "#0ABEC5",
reuse = "avg3_144",
ver = "1.11.0"
},
{
id = "avg3_1302",
name = "柔光工匠C",
name_bg_color = "#0ABEC5",
reuse = "avg3_141",
ver = "1.11.0"
},
{
id = "avg3_1303",
name = "格蕾霍恩A",
name_bg_color = "#0ABEC5",
reuse = "avg1_163",
ver = "1.11.0"
},
{
id = "avg3_1304",
name = "シャトンA",
name_bg_color = "#8e65ad",
reuse = "avg1_114"
},
{
id = "avg4_100",
name = "菈露发光",
+8 -1
View File
@@ -178,7 +178,7 @@ return {
{
id = 140,
icon = "Icon/Head/head_14001_S",
name = "***",
name = "スパクル",
landmark = "必要なときは連絡してください",
signature = "迷惑な人は即ブロックしちゃうから",
ver = "1.11.0"
@@ -346,6 +346,13 @@ return {
landmark = "",
signature = ""
},
{
id = 989,
icon = "Icon/Head/head_group_S",
name = "スパクルを監視する会",
landmark = "",
signature = "ブロックするなら退会するな!退会するならブロックするな!"
},
{
id = 9152,
icon = "Icon/Head/head_npc15201_S",
+1 -1
View File
@@ -139,7 +139,7 @@ return {
"",
"",
0,
"카보, 란……",
"호박아, 랜턴아……",
""
}
},
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+127
View File
@@ -0,0 +1,127 @@
return {
{
cmd = "SetGroupId",
param = {"14001"}
},
{
cmd = "SetCharL2D",
param = {
"avg1_140",
3,
"none",
"",
0
}
},
{
cmd = "SetCharL2D",
param = {
"avg1_140",
0,
"avg_emoji_think",
"",
0
}
},
{
cmd = "SetCharL2D",
param = {
"avg1_140",
0,
"none",
"chat_a",
0
}
},
{
cmd = "SetTalk",
param = {
0,
"avg1_140",
"",
0,
"",
false,
"",
"후훗, 또 영감이 떠올랐어.",
""
}
},
{
cmd = "SetTalk",
param = {
0,
"avg1_140",
"",
0,
"",
false,
"",
"앞으로 사흘…… 아니, 이틀은 꼼짝 못 할 것 같아. 물론 급한 일이 있으면 언제든 연락해~",
""
}
},
{
cmd = "SetGroupId",
param = {"14002"}
},
{
cmd = "SetCharL2D",
param = {
"avg1_140",
3,
"none",
"",
0
}
},
{
cmd = "SetCharL2D",
param = {
"avg1_140",
0,
"avg_emoji_star",
"",
0
}
},
{
cmd = "SetCharL2D",
param = {
"avg1_140",
0,
"none",
"presents_a",
0
}
},
{
cmd = "SetTalk",
param = {
0,
"avg1_140",
"",
0,
"",
false,
"",
"꽤 흥미로운 재료들은 구했어.",
""
}
},
{
cmd = "SetTalk",
param = {
0,
"avg1_140",
"",
0,
"",
false,
"",
"음…… 그중 몇 개는 내 위시리스트에 있던 거네. 얘기 좀 해보자, 나한테 좀 나눠주면 안 돼?",
""
}
},
{cmd = "End"}
}
File diff suppressed because it is too large Load Diff
+8 -8
View File
@@ -144,7 +144,7 @@ return {
"",
false,
"",
"……하늘이 뚫린 듯 비가 쏟아지는 밤이었다. 칠흑 같은 파도가 너울대는 바다를 멍하니 바라보던 중, ==RT==순간 연한 녹색 빛이 수면 위로 올라오는 게 보였다.",
"하늘이 뚫린 듯 비가 쏟아지는 밤이었다. 칠흑 같은 파도가 너울대는 바다를 멍하니 바라보던 중, ==RT==순간 연한 녹색 빛이 수면 위로 올라오는 게 보였다.",
""
}
},
@@ -2858,7 +2858,7 @@ return {
"",
false,
"",
"게다가 어차피 ‘유령선 괴담’을 조사할 거면 대략적인 줄거리는 파악해 두는 게 좋. 안 그래?",
"게다가 어차피 ‘유령선 괴담’을 조사할 거면 대략적인 줄거리는 파악해 두는 게 좋잖아. 안 그래?",
""
}
},
@@ -3107,7 +3107,7 @@ return {
"",
false,
"",
"뭐야앙~★ 또 속닥속닥 나 욕하고 있었?",
"뭐야앙~★ 또 속닥거리면서 내 욕하고 있었?",
""
}
},
@@ -3925,7 +3925,7 @@ return {
"",
false,
"",
"꼭 그렇다는 건 아니고♪ 애초에 ‘괴담’ 같은 건, 대부분 발단이 되는 사실이 있는 법이거든.",
"꼭 그렇다는 건 아니고♪ 애초에 ‘괴담’ 같은 건, 대부분 과장된 부분이 많은 법이거든.",
""
}
},
@@ -4222,7 +4222,7 @@ return {
"",
false,
"",
"그렇게 소문에 살이 붙다 보면…… ==W==단순히 반짝반짝★한 것도 어느새 괴담으로 둔갑할 수 있는 거 아니겠어?",
"그렇게 소문에 살이 붙다 보면…… ==W==단순히 반짝반짝★ 빛나는 것만으로도 어느새 괴담으로 둔갑할 수 있는 거 아니겠어?",
""
}
},
@@ -6490,7 +6490,7 @@ return {
"",
false,
"",
"……아니, 그들은 모두 선 채로 죽어 있었다. 얼굴이 썩어 문드러져 휑한 구멍만 남고서도, 이 끝 모를 항해 속에서 밤의 어둠과 하나 되어 현세를 떠돌고 있었던 것이다……!",
"열댓 명의 그림자가 갑판 위에 굳어버린 듯, 온몸을 흠뻑 젖은 채 뻣뻣하게 서 있었다……",
""
}
},
@@ -6508,7 +6508,7 @@ return {
"",
false,
"",
"그들의 손에 들린 등불은 악마의 눈처럼 섬뜩한 빛을 내며 흔들린다.",
"그들의 손에 들린 등불은 악마의 눈처럼 섬뜩한 빛을 내며 흔들린다.",
""
}
},
@@ -6526,7 +6526,7 @@ return {
"",
false,
"",
"얼굴 없는 망자들의 손에 들려진 ‘랜턴’은 뿌옇게 빛나며 마치 악마의 시선처럼==RT==순진한 뱃사람을 한 명, 또 한 명 심연으로 인도했다……",
"순진한 선원들을 유혹해, 돌이킬 수 없는 파멸의 심연으로 한 걸음씩 이끌고 들어간다.",
""
}
},
+19 -19
View File
@@ -511,7 +511,7 @@ return {
"",
false,
"",
"아하, 산소가 부족해서 그랬나 보다. 걱정 마, 푹 쉬면 나아질 거야~",
"아하, 산소가 부족해서 그럴 거야. 걱정 마, 푹 쉬면 나아질 거야~",
""
}
},
@@ -2143,7 +2143,7 @@ return {
"",
false,
"",
"누가 사주했? 의뢰인 이름이 뭡니까?",
"누가 사주했나요? 의뢰인 이름이 뭡니까?",
""
}
},
@@ -2262,7 +2262,7 @@ return {
"",
false,
"",
"……누구 휴대폰이죠?",
"누구 휴대폰이죠?",
""
}
},
@@ -3056,7 +3056,7 @@ return {
"",
false,
"",
"……도착하면 질문 폭탄이 쏟아지겠는걸.",
"도착하면 질문 폭탄이 쏟아지겠는걸.",
""
}
},
@@ -3300,7 +3300,7 @@ return {
"",
false,
"",
"아까 ‘곧 합류한다’고 했지?",
"아까 ‘곧 합류한다’고 했지?",
""
}
},
@@ -3487,7 +3487,7 @@ return {
"",
false,
"",
"……엥??",
"엥??",
""
}
},
@@ -3736,7 +3736,7 @@ return {
"",
false,
"",
"당신을 구하고 나서 이미 한참 멀리까지 나온 터라, 뭍으로 바로 돌아가는 건 어려울 것 같아~",
"당신을 구하고 나서 한참 멀리까지 나온 터라, 뭍으로 바로 돌아가는 건 어려울 것 같아~",
""
}
},
@@ -3874,7 +3874,7 @@ return {
"",
false,
"",
"불쌍하니까 통조림은 나눠드리죠. 여기서 굶어 죽으면 치우기 귀찮으니까.",
"불쌍하니까 통조림은 나눠드리죠. 여기서 굶어 죽으면 치우기 귀찮으니까.",
""
}
},
@@ -3969,7 +3969,7 @@ return {
"",
false,
"",
"……미안해요. ==W==언니!",
"미안해요. ==W==언니!",
""
}
},
@@ -4143,7 +4143,7 @@ return {
"",
false,
"",
"……훗<size=60>♪</size>",
"<size=60>♪</size>",
""
}
},
@@ -4175,7 +4175,7 @@ return {
"",
false,
"",
"나를 보면서 비웃는 거지?",
"날 그렇게 보는 거지?",
""
}
},
@@ -4303,7 +4303,7 @@ return {
"",
false,
"",
"……알겠어. 그런데 너희 목적지가 그렇게 먼 곳이야?",
"알겠어. 그런데 너희 목적지가 그렇게 먼 곳이야?",
""
}
},
@@ -4392,7 +4392,7 @@ return {
"",
false,
"",
"그러고 보니 아야메가 그랬지. 이 마을은 바다로 나가기 편해서 항해하는 여행가들의 거점이 다고.",
"그러고 보니 아야메가 그랬지. 이 마을은 바다로 나가기 편해서 항해하는 여행가들의 거점이 다고.",
""
}
},
@@ -4576,7 +4576,7 @@ return {
"",
false,
"",
"실력순으로 보면 우리 언니 무조건 일등이에요!",
"실력순으로 보면 우리 언니 무조건 일등이에요!",
""
}
},
@@ -5052,7 +5052,7 @@ return {
"",
false,
"",
"……거짓말하시네요.",
"거짓말하시네요.",
""
}
},
@@ -5360,7 +5360,7 @@ return {
"",
false,
"",
"……있잖아. 너희들도 바다에 나타나는 빛에 대해 조사하러 온 거지?",
"너희들도 바다에 나타나는 빛 조사하러 온 거지?",
""
}
},
@@ -5677,7 +5677,7 @@ return {
"",
false,
"",
"훗, 정말 행운인 줄 아세요. 왜냐하면……",
"훗, 운 좋은 줄 아세요. 왜냐하면……",
""
}
},
@@ -5810,7 +5810,7 @@ return {
"",
false,
"",
"==W==심지어 마레 님은 바다의 빛을 직접 두 눈으로 본 유일한 목격자랍니다.",
"심지어…… ==W==마레 님은 바다의 빛을 직접 두 눈으로 본 유일한 목격자랍니다.",
""
}
},
@@ -5966,7 +5966,7 @@ return {
"",
false,
"",
"……13년 전 일이라고 했어. 우리 할머니가 그 빛을 봤던 게.",
"응. 13년 전 할머니가 그 빛을 봤어……",
""
}
},
+20 -20
View File
@@ -5,7 +5,7 @@ return {
"ep_mainline_001",
"03",
"의문과 냄새",
"시아와 카린, 두 사람의 목적이 밝혀진다. 할머니의 명예를 되찾기 위한 여정. 이유를 알 수 없지만, 시아는 당신을 이상할 정도로 따르기 시작한다……",
"시아와 카린, 두 사람의 목적이 밝혀진다. 할머니의 명예를 되찾기 위한 여정. 이유를 알 수 없지만, 시아는 당신을 이상할 정도로 따다……",
0
}
},
@@ -107,7 +107,7 @@ return {
"",
false,
"",
"……13년 전, 그 신비로운 빛이 처음 나타났을 때 큰 불행이 닥치는 게 아니냐며 온 마을이 난리가 났어.",
"13년 전, 그 신비로운 빛이 처음 나타났을 때 큰 불행이 닥치는 게 아니냐며 온 마을이 난리가 났어.",
""
}
},
@@ -199,7 +199,7 @@ return {
"",
false,
"",
"그리고 바다 위에서 꼬박 사흘 밤낮을 헤맨 끝에……",
"그리고 바다 위에서 사흘 밤낮을 헤맨 끝에……",
""
}
},
@@ -396,7 +396,7 @@ return {
"",
false,
"",
"할머니는 드디어 빛의 출처에 도달했어. 밤의 어둠과 철썩 달라붙은 듯한 바다에서 할머니가 본 것은…… 뿌옇게 빛나는 거대한 유령선이었어.",
"눈앞에 들어온 것은 거대한 유령선이었어. 칠흑 같은 어둠 속에서, 몽환적인 빛을 내뿜고 있었대.",
""
}
},
@@ -962,7 +962,7 @@ return {
"",
false,
"",
"……절대로. ==W==무슨 일이 있어도 그 해역에 다가가지 말거라.",
"무슨 일이 있어도…… ==W==그 해역에 다가가지 말거라.",
""
}
},
@@ -1040,7 +1040,7 @@ return {
"",
false,
"",
"유령선에 발각되면 끝장이야. 끝까지 추적해 오거든……",
"유령선의 영역에 발을 들이는 순간, 그 어디로도 도망칠 수 없다.",
""
}
},
@@ -1083,7 +1083,7 @@ return {
"",
false,
"",
"그리고 유령들이 배에 침입해서 칼을 휘두르며 난장판을 만들고, 마지막에는 바닷속으로 끌고 들어가려고 해.",
"유령들은 네가 눈치채기도 전에 배 위로 소리 없이 기어올라 와, 목을 옥죄고 피부를 갈기갈기 찢어놓을 거야. 어떻게든 널 바닷속 깊은 곳으로 끌고 들어가려고 하지……",
""
}
},
@@ -1122,7 +1122,7 @@ return {
"",
false,
"",
"맞서 싸운다 한들 유령 상대로 공격이 통하지도 않아. ==W==유일한 선택지는 배를 버리고 도망치는 거야. 그때 판단을 잘못했으면 지금쯤 나도 녀석들과 어깨동무를 하고 있었을 거야.",
"맞서 싸운다 한들 유령 상대로 역부족이기에 ==W==유일한 선택지는 배를 버리고 도망치는 거야. 비상용 나무 보트가 없었다면, 아마 나도 들과 같은 유령이 되어버렸겠지.",
""
}
},
@@ -2167,7 +2167,7 @@ return {
"",
false,
"",
"……==W==그런 인간들은 그냥 폭풍에 휩쓸려서 싹 다 죽었으면.",
"==W==그런 인간들은 그냥 폭풍에 휩쓸려서 싹 다 죽었으면 좋겠어요.",
""
}
},
@@ -2472,7 +2472,7 @@ return {
"",
false,
"",
"할머니는 안 좋은 소문 따위 신경 안 쓴다고 하셨지만…… 사랑하는 사람이 비난받는 건 가슴이 아프잖아.",
"할머니는 안 좋은 소문 따위 신경 안 쓴다고 하셨지만…… 사랑하는 사람이 비난받는 건 마음이 아프잖아.",
""
}
},
@@ -2710,7 +2710,7 @@ return {
"",
false,
"",
"당신, 설마 언니가 아무 대비도 없이 온 줄 알았어요? 천만의 말씀! 만약 유령선을 만나더라도 무서울 건 없답니다!",
"당신, 설마 언니가 아무 대비도 없이 온 줄 알았어요? 천만의 말씀! 설령 유령선을 만나더라도 무서울 건 없답니다!",
""
}
},
@@ -2863,7 +2863,7 @@ return {
"",
false,
"",
"맞아요. 저주 사진을 만들 수 있죠! ==W==우리 할머니를 욕한 사람은 모조리 3대가 저주받을 겁니다!",
"맞아요. 저주 사진을 만들 수 있죠! ==W==우리 할머니를 욕한 사람은 3대가 저주받을 겁니다!",
""
}
},
@@ -3249,7 +3249,7 @@ return {
"",
false,
"",
"……크흠. 너희에게 한 가지 제안을 하고 싶은데.",
"크흠. 너희에게 한 가지 제안을 하고 싶은데.",
""
}
},
@@ -3466,7 +3466,7 @@ return {
"",
false,
"",
"==W==……언니는 어떻게 생각해요?",
"음…… ==W==언니는 어떻게 생각해요?",
""
}
},
@@ -3719,7 +3719,7 @@ return {
"",
false,
"",
"나는 느낄 수 있거든♪",
"나는 느낄 수 있거든♪",
""
}
},
@@ -3860,7 +3860,7 @@ return {
"",
false,
"",
"……알았어요. 이럴 때 언니 말은 항상 옳았으니까.",
"알았어요. 이럴 때 언니 말은 항상 옳았으니까.",
""
}
},
@@ -3916,7 +3916,7 @@ return {
"",
false,
"",
"우리 선단에 들어온 걸 환영……합니다.",
"우리 선단에 들어온 걸 환영…… 합니다.",
""
}
},
@@ -4371,7 +4371,7 @@ return {
"",
false,
"",
"……배에서는 잠이 안 올 줄 알았는데, 눈 떠 보니 어느새 아침이네.",
"배에서는 잠을 못 잘 줄 알았는데, 눈 떠 보니 어느새 아침이네.",
""
}
},
@@ -6019,7 +6019,7 @@ return {
},
"",
{
"아까 바닥에서 자도 된다고 했지만, 너희가 이불을 빌려준 덕에 이렇게도 도움이 되네.",
"너희가 이불을 빌려준 덕에 이렇게도 도움이 되네",
"",
"",
""
@@ -7121,7 +7121,7 @@ return {
"",
false,
"",
"……앗. ==W==",
"……==W==",
""
}
},
+14 -14
View File
@@ -600,7 +600,7 @@ return {
"",
false,
"",
"카린은 대물을 낚고, 토끼 씨도 다친 데 없이 멀쩡하고. 다 같이 윈윈야~♪",
"카린은 대물을 낚고, 토끼 씨도 다친 데 없이 멀쩡하고. 다 같이 윈윈한 거야~♪",
""
}
},
@@ -643,7 +643,7 @@ return {
"",
false,
"",
"……하, 하하하. 네, 맞아요. 윈윈이죠……",
"하, 하하하. 네, 맞아요. 윈윈이죠……",
""
}
},
@@ -913,7 +913,7 @@ return {
"",
false,
"",
"이거 왠지 뭐라도 사달이 날 것 같은데……",
"이거 왠지 사달이 날 것 같은데……",
""
}
},
@@ -1615,7 +1615,7 @@ return {
"",
false,
"",
"……헉! 당신의 정체가 뭔지 완전히 깨달았어요……!",
"헉! 당신의 정체가 뭔지 완전히 깨달았어요……!",
""
}
},
@@ -1776,7 +1776,7 @@ return {
"",
false,
"",
"……어?",
"어?",
""
}
},
@@ -2364,7 +2364,7 @@ return {
"",
false,
"",
"……이렇게 절실하게 매달리는 걸 보니 카린은 시아를 정말 아끼나 보네.",
"이렇게 절실하게 매달리는 걸 보니 카린은 시아를 정말 아끼나 보네.",
""
}
},
@@ -2506,7 +2506,7 @@ return {
"",
false,
"",
"……역시 냄새였군요.",
"역시 냄새였군요.",
""
}
},
@@ -2558,7 +2558,7 @@ return {
"",
false,
"",
"훗, 우리 언니가 후각이 엄청나긴 하죠. 눈에 보이는 것보다 냄새가 훨씬 정확한 정보랍니다.",
"훗, 언니가 후각이 엄청나긴 하죠. 눈에 보이는 것보다 냄새가 훨씬 정확한 정보랍니다.",
""
}
},
@@ -3773,7 +3773,7 @@ return {
"",
false,
"",
"지금 순간적으로 카린이 겁에 질린 것 같았는데…… 기분 탓인가?",
"순간적으로 카린이 겁에 질린 것 같았는데…… 기분 탓인가?",
""
}
},
@@ -4147,7 +4147,7 @@ return {
"",
false,
"",
"내가 무슨 행운 토템 같은 거야?",
"내가 행운 토템인가?",
""
}
},
@@ -5105,7 +5105,7 @@ return {
"",
false,
"",
"너희가 말한 할머니에 대한 나쁜 소문을 퍼뜨리고 다닌 자들일 가능성도 있으려나?",
"설마 보물을 찾겠다고 나선 그놈들일까요?",
""
}
},
@@ -5812,7 +5812,7 @@ return {
"",
false,
"",
"……들렸어요. 이쪽이에요!",
"들렸어요. 이쪽이에요!",
""
}
},
@@ -6971,7 +6971,7 @@ return {
"",
false,
"",
"……확실해요. 저 녀석들이 틀림없어요!!",
"확실해요. 저 녀석들이 틀림없어요!!",
""
}
},
@@ -7509,7 +7509,7 @@ return {
"",
false,
"",
"……크흠, 다들 사이좋게 점심 식사 중이신가요?",
"크흠, 다들 사이좋게 점심 식사 중이신가요?",
""
}
},
+9 -9
View File
@@ -905,7 +905,7 @@ return {
"",
false,
"",
"……음? 갑판에 누가 있는데.",
"음? 갑판에 누가 있는데.",
""
}
},
@@ -1751,7 +1751,7 @@ return {
"",
false,
"",
"뭔가 찝찝한 느낌이지만…… 다음에 만나면 배로 갚아 주겠어요!",
"뭔가 찝찝한 느낌이지만…… 다음에 만나면 3배로 갚아 주겠어요!",
""
}
},
@@ -2174,7 +2174,7 @@ return {
"",
false,
"",
"……잘 먹었습니다. 이제 배불러요.",
"잘 먹었습니다. 이제 배불러요.",
""
}
},
@@ -2765,7 +2765,7 @@ return {
"",
false,
"",
"……역시 그놈들이 한 말이 신경 쓰이는 거군요. ==W==그런 건 다 헛소리일 게 뻔해요! 다음에 걸리면 두 번 다시 거짓말 못 하도록 통에 집어넣고 소금으로 절여 버릴 거예요!",
"역시 그놈들이 한 말이 신경 쓰이는 거군요. ==W==그런 건 다 헛소리일 게 뻔해요! 다음에 걸리면 두 번 다시 거짓말 못 하도록 통에 집어넣고 소금으로 절여 버릴 거예요!",
""
}
},
@@ -3258,7 +3258,7 @@ return {
"",
false,
"",
"……하지만 실제로는 다친 데가 전혀 없었어. 그 붕대는 위장용이었던 거야.",
"사실 그때 다친 데가 전혀 없었어. 그 붕대는 위장용이었던 거야.",
""
}
},
@@ -3535,7 +3535,7 @@ return {
"",
false,
"",
"그런데 아침에 보니까 다시 온몸에 붕대를 감고 있길래……",
"그런데 아침에 보니까 다시 온몸에 붕대를 감고 있었어…… 왜 그랬는지 이해가 안 돼.",
""
}
},
@@ -3641,7 +3641,7 @@ return {
"",
false,
"",
"용기를 내서 이유를 물어봤지만, 할머니는 끝까지 잡아떼셨어. 걱정이 심한 나머지 잘못 본 게 아니냐며……",
"용기를 내서 이유를 물어봤지만, 할머니는 끝까지 잡아떼셨어. 걱정이 심한 나머지 잘못 본 게 아니냐며……",
""
}
},
@@ -4956,7 +4956,7 @@ return {
"",
false,
"",
"……이 정도면 긴장은 좀 풀렸으려나.",
"이 정도면 긴장은 좀 풀렸으려나.",
""
}
},
@@ -5234,7 +5234,7 @@ return {
"",
false,
"",
"……==W==전달할 내용은 여기까지야. 그쪽 진행 상황은 어때?",
"전달할 내용은 여기까지야. ==W==그쪽 진행 상황은 어때?",
""
}
},
+9 -9
View File
@@ -128,7 +128,7 @@ return {
"",
false,
"",
"토끼 씨♪ ……뭐 고민하는 거 있어?",
"토끼 씨♪ 뭘 그렇게 고민하 있어?",
""
}
},
@@ -1642,7 +1642,7 @@ return {
"",
false,
"",
"……이것 말고도 할머니는 비밀이 많은 것 같아. 그 항해에 관한 것도 거의 다 주변 사람한테 들은 얘기잖아.",
"이것 말고도 할머니는 비밀이 많은 것 같아. 그 항해에 관한 것도 거의 다 주변 사람한테 들은 얘기잖아.",
""
}
},
@@ -4197,7 +4197,7 @@ return {
"",
false,
"",
"아무리 귀가 밝아도 자는 중에는 안 들려요! 저 같은 경우는 바로 근처에서 번개가 쳐도 모를 정도죠!",
"아무리 귀가 밝아도 자고 있으면 안 들려요! 저 같은 경우는 바로 근처에서 번개가 쳐도 모를 정도죠!",
""
}
},
@@ -4719,7 +4719,7 @@ return {
"",
false,
"",
"알았어요. 이번은 따지지 않을게요! 절 생각해서 그런 거라는 거 알고 있어요. 우린 한 가족이잖아요.",
"알았어요. 이번은 따지지 않을게요! 절 생각해서 그런 거라는 거 알고 있어요. 우린 한 가족이잖아요.",
""
}
},
@@ -4784,7 +4784,7 @@ return {
"",
false,
"",
"……그때 아무도 저를 안 믿어 줬을 때 유일하게 믿어 준 게 언니였으니까요.",
"그때 아무도 저를 안 믿어 줬을 때 유일하게 믿어 준 게 언니였으니까요.",
""
}
},
@@ -4849,7 +4849,7 @@ return {
"",
false,
"",
"언니가 계속 격려해 준 덕분에, 제가 다시 일어설 수 있었어요. 그때부터 언니는 제 가장 가까운 가족이 되었죠…… 앞으로도 영원히요!",
"언니가 계속 격려해 준 덕분에 제가 다시 일어설 수 있었어요. 그때부터 언니는 제 가장 가까운 가족이 되었죠…… 앞으로도 영원히요!",
""
}
},
@@ -5398,7 +5398,7 @@ return {
"",
false,
"",
"……아니, 이 와중에 누가…… 어, 시아?!",
"아니, 이 와중에 누가…… 어, 시아?!",
""
}
},
@@ -5622,7 +5622,7 @@ return {
"",
false,
"",
"……무슨 일이 있었는지 모르지만 당장 카린에게 알려야 해!",
"무슨 일이 있었는지 모르지만 당장 카린에게 알려야 해!",
""
}
},
@@ -5869,7 +5869,7 @@ return {
"",
false,
"",
"<size=50>바다가…… 바다가 완전 난리 났다구요……!!",
"<size=50>이…… 이게 뭐야……!!",
""
}
},
+10 -10
View File
@@ -2367,7 +2367,7 @@ return {
"",
false,
"",
"바로 그거예요. 하지만 분사력이 무식하게 세니까 조심해서 배를 운전해야 한답니다!",
"바로 그거예요. 하지만 분사력이 무식하게 세니까 조심해서 배를 운전해야 해요!",
""
}
},
@@ -3197,7 +3197,7 @@ return {
"",
false,
"",
"모습이 안 보이니까…… ==W==잘 따돌린 것 같네요.",
"지금은 안 보이니까…… ==W==잘 따돌린 것 같네요.",
""
}
},
@@ -3259,7 +3259,7 @@ return {
"",
false,
"",
"그렇군…… 다행이야. 하지만 아직 방심하진 말자.",
"다행이야…… 하지만 아직 방심하진 말자.",
""
}
},
@@ -3414,7 +3414,7 @@ return {
"",
false,
"",
"……앗! 잠깐만요, 이 소리는……",
"앗! 잠깐만요, 이 소리는……",
""
}
},
@@ -5147,7 +5147,7 @@ return {
"",
false,
"",
"……어라? 생각해 보니 이상하네요? ==W==마레가 소용돌이에 빠져 죽었으면 마을로 돌아온 사람은 대체……",
"어라? 생각해 보니 이상하네요? ==W==마레가 소용돌이에 빠져 죽었으면 마을로 돌아온 사람은 대체……",
""
}
},
@@ -5628,7 +5628,7 @@ return {
"",
false,
"",
"……헉! 네, 네가 갑자기 오니까 놀라서 그랬잖아! 두목이 세상에서 제일 싫어하는 게 유령이라고 했어, 안 했어?!",
"헉! 네, 네가 갑자기 오니까 놀라서 그랬잖아! 두목이 세상에서 제일 싫어하는 게 유령이라고 했어, 안 했어?!",
""
}
},
@@ -6247,7 +6247,7 @@ return {
"",
false,
"",
"……맞아요. ==W==네, 당연히 그래야죠. 우리 언니쯤 되면 지금쯤 고래를 훈련시켜서 멋지게 타고 다닐 거예요!",
"맞아요. ==W==당연히 그래야죠. 우리 언니쯤 되면 지금쯤 고래를 훈련시켜서 멋지게 타고 다닐 거예요!",
""
}
},
@@ -6966,7 +6966,7 @@ return {
"",
false,
"",
"……음? 뭐가 있길래 갑자기 그래?",
"음? 뭐가 있길래 갑자기 그래?",
""
}
},
@@ -7194,7 +7194,7 @@ return {
"",
false,
"",
"……잠깐, 저건 설마 유령선인가?!",
"잠깐…… 저건 설마 유령선인가?!",
""
}
},
@@ -7231,7 +7231,7 @@ return {
"",
false,
"",
"……아니, 배는 아니야. 저건……",
"아니, 배는 아니야. 저건……",
""
}
},
+8 -8
View File
@@ -191,7 +191,7 @@ return {
"",
false,
"",
"맞죠. 토끼 씨? ……그렇다고 말해요!",
"맞죠. 토끼 씨? 그렇다고 말해요!",
""
}
},
@@ -782,7 +782,7 @@ return {
"",
false,
"",
"……진짜 일기가 있었던 거예요? 그 사람들이 계속 헛소리만 하고 있는 줄 알았는데……",
"진짜 일기가 있었던 거예요? 그 사람들이 계속 헛소리만 하고 있는 줄 알았는데……",
""
}
},
@@ -2994,7 +2994,7 @@ return {
"",
false,
"",
"……그런가. 고래 군. 너는 계속 가족을 지키고 있었던 거구나.",
"그런가. 고래 군. 너는 계속 가족을 지키고 있었던 거구나.",
""
}
},
@@ -3875,7 +3875,7 @@ return {
"",
false,
"",
"……여긴 어디지?",
"여긴 어디지……?",
""
}
},
@@ -4883,7 +4883,7 @@ return {
"",
false,
"",
"그 두 사람이 들으면 분명 여기로 와줄 테니까.",
"그 두 사람이 들으면 분명 여기로 와줄 거야.",
""
}
},
@@ -5405,7 +5405,7 @@ return {
"",
false,
"",
"……할머니, 화났어? 얘기한 거 안 지키고 이렇게 먼 곳까지 와 버려서……",
"할머니, 화났어? 약속 안 지키고 이렇게 먼 곳까지 와 버려서……",
""
}
},
@@ -7530,7 +7530,7 @@ return {
"",
false,
"",
"후후. 벌써 친해졌네. 하지만 지금은 해야 할 일도 있으니까. 감사는 나중에 천천히 하자?",
"후후. 벌써 친해졌네. 하지만 지금은 해야 할 일도 있으니까. 감사는 나중에 하자?",
""
}
},
@@ -7659,7 +7659,7 @@ return {
"",
false,
"",
"문제없어요! 장비도 물자도 전부 가져왔다고요! 여기, 이 랜턴도……",
"! 장비도 물자도 전부 가져왔다고요! 여기, 이 랜턴도……",
""
}
},
+6 -6
View File
@@ -1114,7 +1114,7 @@ return {
"",
false,
"",
"……응? 안으로 갈수록 점점 어두워지는데요?",
"응? 안으로 갈수록 점점 어두워지는데요?",
""
}
},
@@ -1691,7 +1691,7 @@ return {
"",
false,
"",
"……잠깐만. 카린이 예민했던 게 아닐지도.",
"잠깐만. 카린이 예민했던 게 아닐지도.",
""
}
},
@@ -2057,7 +2057,7 @@ return {
"",
false,
"",
"……유령이에요!! ==W==모두 도망쳐요~!!",
"유령이에요!! ==W==모두 도망쳐요~!!",
""
}
},
@@ -3387,7 +3387,7 @@ return {
"",
false,
"",
"……할머니도 옛날에 이 광경을 본 걸까.",
"할머니도 옛날에 이 광경을 본 걸까.",
""
}
},
@@ -3593,7 +3593,7 @@ return {
"",
false,
"",
"<size=80>……그건 아주 큰 착각이에요.",
"<size=80>그건 아주 큰 착각이에요.",
""
}
},
@@ -7085,7 +7085,7 @@ return {
"",
false,
"",
"……잠깐만, 토끼 씨.",
"잠깐만, 토끼 씨.",
""
}
},
+21 -21
View File
@@ -148,7 +148,7 @@ return {
"",
false,
"",
"……할머니의 일기라고요!?",
"할머니의 일기라고요!?",
""
}
},
@@ -1254,7 +1254,7 @@ return {
"",
false,
"",
"분명 마레는 몇 번이고 이 섬에 와서 뿔고래 뼈로 거금을 벌어들였던 게 틀림없어요. 전설적인 항해 여행가의 정체가, 탐욕스러운 좀도둑이었다니…… 실망이군요.",
"마레는 몇 번이고 이 섬에 와서 뿔고래 뼈로 거금을 벌어들였던 게 틀림없어요. 전설적인 항해 여행가의 정체가, 탐욕스러운 좀도둑이었다니…… 실망이군요.",
""
}
},
@@ -1462,7 +1462,7 @@ return {
"",
false,
"",
"<size=35>……그리고 저 사람, 냄새가 변하고 있어. 지금은 초조해지기 시작한 것 같아.",
"<size=35>그리고 저 사람, 냄새가 변하고 있어. 지금은 초조해지기 시작한 것 같아.",
""
}
},
@@ -1618,7 +1618,7 @@ return {
"",
false,
"",
"……불쌍한 사람.",
"불쌍한 사람.",
""
}
},
@@ -1683,7 +1683,7 @@ return {
"",
false,
"",
"……응? 무슨 소릴 하는 거죠? 어디가 불쌍하다는 거죠?",
"응? 무슨 소릴 하는 거죠? 어디가 불쌍하다는 거죠?",
""
}
},
@@ -1769,7 +1769,7 @@ return {
"",
false,
"",
"맞아요! 할머니가 뿔고래 뼈로 돈을 벌었을 리가 없어요! 당신 처럼 자기중심적인 악당이 하는 말을 누가 믿겠어요?",
"맞아요! 할머니가 뿔고래 뼈로 돈을 벌었을 리가 없어요! 당신처럼 자기중심적인 악당이 하는 말을 누가 믿겠어요?",
""
}
},
@@ -1965,7 +1965,7 @@ return {
"",
false,
"",
"……아직도 포기하지 않는군요.",
"아직도 포기하지 않는군요.",
""
}
},
@@ -4545,7 +4545,7 @@ return {
"",
false,
"",
"……응? 어라? 기분 탓인가, 뼈의 빛이 아까보다 약해진 것 같은데……",
"응? 어라? 기분 탓인가, 뼈의 빛이 아까보다 약해진 것 같은데……",
""
}
},
@@ -5439,7 +5439,7 @@ return {
"",
false,
"",
"……그것은 폭우가 쏟아지던 어느 밤의 일이었다. 칠흑 같은 파도가 흔들리는 바다를 바라보고 있었더니…… 갑자기 옅은 녹색 빛이 떠올랐다.",
"그것은 폭우가 쏟아지던 어느 밤이었다. 칠흑 같은 파도가 흔들리는 바다를 바라보고 있었더니…… 갑자기 옅은 녹색 빛이 떠올랐다.",
""
}
},
@@ -5826,7 +5826,7 @@ return {
"",
false,
"",
"……역시. 또 불이 꺼져있어.",
"역시. 또 불이 꺼져있어.",
""
}
},
@@ -6306,7 +6306,7 @@ return {
"",
false,
"",
"대단해요. 토끼 씨……! 어떻게 알았어요!?",
"대단해요. 어떻게 알았어요!?",
""
}
},
@@ -6629,7 +6629,7 @@ return {
"",
false,
"",
"……그렇다면 우리가 가져온 공구를 쓰세요.",
"그렇다면 우리가 가져온 공구를 쓰세요.",
""
}
},
@@ -7232,7 +7232,7 @@ return {
"",
false,
"",
"확실히…… 마을에서 보이는 빛도, 며칠 동안 비가 계속 내린 뒤에만 나타난다고……",
"확실히…… 마을에서 보이는 빛도, 며칠 동안 비가 계속 내린 뒤에만 나타났어……",
""
}
},
@@ -10177,7 +10177,7 @@ return {
"",
false,
"",
"시끄러워, 시끄러워~~~요오오~~! ==W==그것보다, 나한테는 보물 지도가 한 장 더 있어요. 얼른 가서 보물을 찾아내겠어요~!!",
"시끄러워, 시끄러워~~~ 요오오~~! ==W==그것보다, 나한테는 보물 지도가 한 장 더 있어요. 얼른 가서 보물을 찾아내겠어요~!!",
""
}
},
@@ -11239,7 +11239,7 @@ return {
"",
false,
"",
"……방금 그게 마지막 페이지야. 할머니가 마을로 돌아온 날짜를 생각해 보면, 당시의 물건이 맞는 것 같아.",
"방금 그게 마지막 페이지야. 할머니가 마을로 돌아온 날짜를 생각해 보면, 당시의 물건이 맞는 것 같아.",
""
}
},
@@ -11417,7 +11417,7 @@ return {
"",
false,
"",
"“여기서부터는 손녀 시아에게 보내는 내용이다. 만약 그 아이 이외의 누군가가 읽고 있다면, 미안하지만 그대로 덮어주기를.”",
"“여기서부터는 손녀 시아에게 보내는 내용이다. ==RT==만약 그 아이 이외의 누군가가 읽고 있다면, 미안하지만 그대로 덮어주기를.”",
""
}
},
@@ -11607,7 +11607,7 @@ return {
"",
false,
"",
"==A-1==“시아, 축하한다. 용케 여기까지 왔구나. 바다를 건너 이것을 손에 넣었다는 것은, 네가 이제 훌륭한 항해 여행가라는 뜻이겠지.”==P== ==A-1==“이미 눈치챘겠지만, 모두가 본 빛은 뿔고래의 뼈고, 유령선도 새빨간 거짓말이. 아니면, 삼류 항해 여행가처럼 보물이 없어서 실망했을까?”==P== ==A-1==“너도 알겠지만, 이곳은 뿔고래들에게 있어 안식의 땅이야. 그런 장소를 욕심 많은 녀석들에게 침범당하게 둘 수는 없지. 사람들을 쫓아내기 위해 유령선 이야기를 만들어 낸 거란다.”",
"==A-1==“시아, 축하한다. 용케 여기까지 왔구나. 바다를 건너 이것을 손에 넣었다는 것은, 너는 이제 훌륭한 항해 여행가라는 뜻이.”==P====RT====RT====A-1==“이미 눈치챘겠지만, 모두가 본 빛은 뿔고래의 뼈고, 유령선도 새빨간 거짓말이. 아니면, 삼류 항해 여행가처럼 보물이 없어서 실망했?”==P====RT====RT====A-1==“너도 알겠지만, 이곳은 뿔고래들에게 있어 안식의 땅이야. 그런 장소를 욕심 많은 녀석들에게 침범당하게 둘 수는 없지. 사람들을 쫓아내기 위해 유령선 이야기를 만들어 낸 거란다.”",
""
}
},
@@ -11715,7 +11715,7 @@ return {
"",
false,
"",
"……흠. 할머니는 시아가 여기 올 것을 예상하고 있었나.",
"흠. 할머니는 시아가 여기 올 것을 예상하고 있었나.",
""
}
},
@@ -11805,7 +11805,7 @@ return {
"",
false,
"",
"==A-1==“나한테 이 이야기를 못 들었다고? 그야 당연하지. 지금 시아는 아직 어린데, 그런 너를 위험한 상황에 처하게 할 수는 없지 않겠니?”==P== ==A-1==“그렇다고는 해도, 이걸 읽고 있는 시아는 분명 훌쩍 자랐겠지. 가능하다면 다 큰 너와 함께 이 일기를 다시 읽고 싶지만, 그건 이뤄지지 않겠구나.==P== ==A-1==“괜찮단다. 슬퍼하지 마렴. 설령 내가 이 세상을 떠나더라도, 바다처럼 영원히 네 곁에 있어 줄 테니.”==P== ==A-1==<size=60>“넌 내 가장 소중한 보물이니까.”",
"==A-1==“나한테 이 이야기를 못 들었다고? 그야 당연하지. 지금 시아는 아직 어린데, 그런 너를 위험한 상황에 처하게 할 수는 없지 않겠니?”==P====RT====RT====A-1==“그렇다고는 해도, 이걸 읽고 있는 시아는 분명 훌쩍 자랐겠지. 가능하다면 다 큰 너와 함께 이 일기를 다시 읽고 싶지만, 그건 이뤄지지 않겠구나.==P====RT====RT====A-1==“괜찮단다. 슬퍼하지 마렴. 설령 내가 이 세상을 떠나더라도, 바다처럼 영원히 네 곁에 있어 줄 테니.”==P====RT====RT====A-1==<size=60>“넌 내 가장 소중한 보물이니까.”",
""
}
},
@@ -11884,7 +11884,7 @@ return {
"",
false,
"",
"……후후. 이번 소동의 진짜 보물은 시아 자신이라는 건가.",
"후후. 이번 소동의 진짜 보물은 시아 자신이라는 건가.",
""
}
},
@@ -11972,7 +11972,7 @@ return {
"",
false,
"",
"……토끼 씨, 여기까지 함께 와 줘서 고마워. 덕분에 할머니의 일기를 찾았고……",
"토끼 씨, 여기까지 함께 와 줘서 고마워. 덕분에 할머니의 일기를 찾았고……",
""
}
},
+4 -4
View File
@@ -173,7 +173,7 @@ return {
"",
false,
"",
"……하쿠! 코하쿠! ==W==일어나, 코하쿠! 왜 책상에서 자고 있어?",
"하쿠! 코하쿠! ==W==일어나, 코하쿠! 왜 책상에서 자고 있어?",
""
}
},
@@ -351,7 +351,7 @@ return {
"",
false,
"",
"……어젯밤, 계속 보스 답장을 기다렸어.",
"어젯밤, 계속 보스 답장을 기다렸어.",
""
}
},
@@ -985,7 +985,7 @@ return {
"",
false,
"",
"에헤헤~♪ 이 푹신푹신한 느낌, 최고~! <size=60>카린, 마왕님을 구해줘서 고마워! 엄청 노력했다면서? 장하다~ 귀엽다~♪",
"에헤헤~♪ 이 푹신푹신한 느낌, 최고~! <size=50>카린, 마왕님을 구해줘서 고마워! 엄청 노력했다면서? 장하다~ 귀엽다~♪",
""
}
},
@@ -1726,7 +1726,7 @@ return {
},
"",
{
"후후. 그런가. 무사히 친해질 수 있었다니 다행이야.",
"후후. 그런가. 무사히 친해질 수 있었다니 다행이야",
"",
"",
""
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff

Some files were not shown because too many files have changed in this diff Show More