Commit e8a7454b authored by 18김민수's avatar 18김민수

Every event && resource updated

parent 5dc887f7
......@@ -32,6 +32,8 @@ namespace ISEKAI_Model
public bool bomRifleManHPModifier = false;
public bool bomRifleManAtkModifier = false;
public bool horseRaisingKnightModifier = false;
public bool expansion1Modifier = false;
public bool expansion2Modifier = false;
public int rifleAmount = 0;
public int castleHP = 0;
......@@ -104,6 +106,12 @@ namespace ISEKAI_Model
allEventsList.Add(new CastleBuilding_1(this));
allEventsList.Add(new CastleBuilding_2(this));
allEventsList.Add(new RoadRestoration(this));
allEventsList.Add(new Expansion_1(this));
allEventsList.Add(new Expansion_2(this));
allEventsList.Add(new Expansion_3_1(this));
allEventsList.Add(new Expansion_3_2(this));
}
private int _HowManySeasonsHavePassed(Season before, Season after)
......
using System;
using System.Collections.Generic;
namespace ISEKAI_Model
{
public class Expansion_1 : EventCore
{
public override int forcedEventPriority { get { return 0; } }
public override string eventName { get { return "확장 이벤트 1"; } }
public override EventLocation location { get { return EventLocation.WayToTown; } }
public override int givenMaxTurn { get { return 3; } }
public override int cost { get { return 2; } }
public override Season availableSeason { get { return Season.None; } }
public override List<Command> script { get { return Parser.ParseScript("Assets/ISEKAI_Model/Scripts/Expansion_1.txt"); } } // command list.
protected override bool exclusiveCondition()
{
int chance = (new Random()).Next() / 10;
bool chanceCondition = chance <= 2;
bool prevCondition = game.allEventsList.Find(e => e.eventName == "길 복구 이벤트").status == EventStatus.Completed;
if (_isFirstOccur && prevCondition)
{
_isFirstOccur = false;
return prevCondition;
}
else
{
if (_isFirstOccur)
return false;
return prevCondition && chanceCondition;
}
}
private bool _isFirstOccur = true;
public Expansion_1(Game game): base(game)
{
characterName = "통계원";
}
}
}
\ No newline at end of file
fileFormatVersion: 2
guid: 8801fa909a90e374ab048fc3249892ce
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
using System;
using System.Collections.Generic;
namespace ISEKAI_Model
{
public class Expansion_2 : EventCore
{
public override int forcedEventPriority { get { return 0; } }
public override string eventName { get { return "확장 이벤트 2"; } }
public override EventLocation location { get { return EventLocation.WayToTown; } }
public override int givenMaxTurn { get { return 3; } }
public override int cost { get { return 3; } }
public override Season availableSeason { get { return Season.None; } }
public override List<Command> script { get { return Parser.ParseScript("Assets/ISEKAI_Model/Scripts/Expansion_2.txt"); } } // command list.
protected override bool exclusiveCondition()
{
int chance = (new Random()).Next() / 10;
bool chanceCondition = chance <= 2;
bool prevCondition = game.allEventsList.Find(e => e.eventName == "확장 이벤트 1").status == EventStatus.Completed;
if (_isFirstOccur && prevCondition)
{
_isFirstOccur = false;
return prevCondition;
}
else
{
if (_isFirstOccur)
return false;
return prevCondition && chanceCondition;
}
}
private bool _isFirstOccur = true;
public Expansion_2(Game game): base(game)
{
characterName = "작업반장";
}
}
}
\ No newline at end of file
fileFormatVersion: 2
guid: 724542063a864884f948dc9e7dde596c
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
using System;
using System.Collections.Generic;
namespace ISEKAI_Model
{
public class Expansion_3_1 : EventCore
{
public override int forcedEventPriority { get { return 0; } }
public override string eventName { get { return "확장 이벤트 3-1"; } }
public override EventLocation location { get { return EventLocation.WayToTown; } }
public override int givenMaxTurn { get { return 2; } }
public override int cost { get { return 5; } }
public override Season availableSeason { get { return Season.None; } }
public override List<Command> script { get { return Parser.ParseScript("Assets/ISEKAI_Model/Scripts/Expansion_3_1.txt"); } } // command list.
protected override bool exclusiveCondition()
{
int chance = (new Random()).Next() / 10;
bool chanceCondition = chance <= 2;
bool prevCondition = game.allEventsList.Find(e => e.eventName == "확장 이벤트 2").status == EventStatus.Completed;
bool choiceCondition = game.TryGetChoiceHistory("확장 이벤트 2", 0) == 0;
if (_isFirstOccur && prevCondition && choiceCondition)
{
_isFirstOccur = false;
return prevCondition;
}
else
{
if (_isFirstOccur)
return false;
return prevCondition && chanceCondition && choiceCondition;
}
}
private bool _isFirstOccur = true;
public Expansion_3_1(Game game): base(game)
{
characterName = "마을 사람";
}
public override void Complete()
{
base.Complete();
game.expansion1Modifier = true;
}
}
}
\ No newline at end of file
fileFormatVersion: 2
guid: ed8b389c720016541bd6903f68bbd3f4
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
using System;
using System.Collections.Generic;
namespace ISEKAI_Model
{
public class Expansion_3_2 : EventCore
{
public override int forcedEventPriority { get { return 0; } }
public override string eventName { get { return "확장 이벤트 3-2"; } }
public override EventLocation location { get { return EventLocation.WayToTown; } }
public override int givenMaxTurn { get { return 3; } }
public override int cost { get { return 2; } }
public override Season availableSeason { get { return Season.None; } }
public override List<Command> script { get { return Parser.ParseScript("Assets/ISEKAI_Model/Scripts/Expansion_3_2.txt"); } } // command list.
protected override bool exclusiveCondition()
{
int chance = (new Random()).Next() / 10;
bool chanceCondition = chance <= 1;
bool prevCondition = game.allEventsList.Find(e => e.eventName == "확장 이벤트 2").status == EventStatus.Completed;
bool choiceCondition = game.TryGetChoiceHistory("확장 이벤트 2", 0) == 1;
if (_isFirstOccur && prevCondition && choiceCondition)
{
_isFirstOccur = false;
return prevCondition;
}
else
{
if (_isFirstOccur)
return false;
return prevCondition && chanceCondition && choiceCondition;
}
}
private bool _isFirstOccur = true;
public Expansion_3_2(Game game): base(game)
{
characterName = "마을 사람";
}
public override void Complete()
{
base.Complete();
game.expansion2Modifier = true;
}
}
}
\ No newline at end of file
fileFormatVersion: 2
guid: ce41d0f48e289124ba01b50a5d9ab9df
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
......@@ -15,20 +15,19 @@ namespace ISEKAI_Model
protected override bool exclusiveCondition()
{
bool turnCondition = game.turn.turnNumber >= 3 && game.turn.turnNumber <= 10;
int chance = (new Random()).Next() / 10;
bool chanceCondition = chance <= 2;
bool prevCondition = game.allEventsList.Find(e => e.eventName == "말 기르기 이벤트 1").status == EventStatus.Completed;
if (_isFirstOccur && turnCondition && prevCondition)
if (_isFirstOccur && prevCondition)
{
_isFirstOccur = false;
return turnCondition && prevCondition;
return prevCondition;
}
else
{
if (_isFirstOccur)
return false;
return prevCondition && turnCondition && chanceCondition;
return prevCondition && chanceCondition;
}
}
......
......@@ -15,20 +15,19 @@ namespace ISEKAI_Model
protected override bool exclusiveCondition()
{
bool turnCondition = game.turn.turnNumber >= 3 && game.turn.turnNumber <= 10;
int chance = (new Random()).Next() / 10;
bool chanceCondition = chance <= 2;
bool prevCondition = game.allEventsList.Find(e => e.eventName == "말 기르기 이벤트 2").status == EventStatus.Completed;
if (_isFirstOccur && turnCondition && prevCondition)
if (_isFirstOccur && prevCondition)
{
_isFirstOccur = false;
return turnCondition && prevCondition;
return prevCondition;
}
else
{
if (_isFirstOccur)
return false;
return prevCondition && turnCondition && chanceCondition;
return prevCondition && chanceCondition;
}
}
......
......@@ -15,20 +15,19 @@ namespace ISEKAI_Model
protected override bool exclusiveCondition()
{
bool turnCondition = game.turn.turnNumber >= 3 && game.turn.turnNumber <= 10;
int chance = (new Random()).Next() / 10;
bool chanceCondition = chance <= 2;
bool prevCondition = game.allEventsList.Find(e => e.eventName == "말 기르기 이벤트 3").status == EventStatus.Completed;
if (_isFirstOccur && turnCondition && prevCondition)
if (_isFirstOccur && prevCondition)
{
_isFirstOccur = false;
return turnCondition && prevCondition;
return prevCondition;
}
else
{
if (_isFirstOccur)
return false;
return prevCondition && turnCondition && chanceCondition;
return prevCondition && chanceCondition;
}
}
......
......@@ -6,7 +6,7 @@ namespace ISEKAI_Model
public class ReturnWarning : EventCore
{
public override int forcedEventPriority { get { return 1000; } }
public override string eventName { get { return "당의 귀환 경고 이벤트"; } }
public override string eventName { get { return "당의 귀환 경고"; } }
public override EventLocation location { get { return EventLocation.None; } }
public override int givenMaxTurn { get { return 10; } }
public override int cost { get { return 0; } }
......
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace ISEKAI_Model
{
public class RoadRestoration : EventCore
{
public override int forcedEventPriority { get { return 0; } }
public override string eventName { get { return "길 복구 이벤트"; } }
public override EventLocation location { get { return EventLocation.WayToTown; } }
public override int givenMaxTurn { get { return 3; } }
public override int cost { get { return 2; } }
public override Season availableSeason { get { return Season.None; } }
public override List<Command> script { get { return Parser.ParseScript("Assets/ISEKAI_Model/Scripts/RoadRestoration.txt"); } } // command list.
protected override bool exclusiveCondition()
{
bool pleasantCondition = game.town.totalPleasantAmount >= 150;
bool foodCondition = game.town.maxFoodConsumption <= game.town.totalFoodConsumption;
int chance = (new Random()).Next() / 10;
bool chanceCondition = chance <= 2;
if (_isFirstOccur && pleasantCondition && foodCondition)
{
_isFirstOccur = false;
return pleasantCondition && foodCondition;
}
else
{
if (_isFirstOccur)
return false;
return pleasantCondition && foodCondition && chanceCondition;
}
}
private bool _isFirstOccur = true;
public RoadRestoration(Game game): base(game)
{
characterName = "통계원";
}
public override void Complete()
{
game.town.totalFoodProduction += 5;
game.town.totalPleasantAmount -= 20;
base.Complete();
}
}
}
\ No newline at end of file
fileFormatVersion: 2
guid: 67f14ffaf01797f4aa0d7236579cb264
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
Load Background "Background\forest"
# "오늘은 이 작은 마을 외곽을 둘러보기로 했다."
## "나" "날씨 좋군..."
Load Character "Character\Townperson2\b\normal" -center
## "마을사람" "어 장동무 왜 여기 있으십니까?" -center
## "나" "아 마을을 둘러보고 있었네. 어디 갔다 오는건가?"
## "마을사람" "아 길도 뚫려서 밖에도 나가볼겸 멀리 다녀와봤습니다." -center
## "나" "오 뭐 밖은 막히기 전이랑 같나? 어땠나?"
## "마을사람" "밖에도 처참하더라고요." -center
## "마을사람" "그 이후로 하나도 회복이 안되었는지 사람 흔적 하나없고 그대로 더라고요." -center
## "나" "아.. 그렇군"
# "이곳은 정말 미개한 곳인거같다. 몇년이 지났는데도 복구가 안된다니..."
## "마을사람" "네 그렇습니다." -center
## "나" "뭐 일단 잘 알았네. 가보게나."
## "마을사람" "아. 맞아 아마 저희처럼 고립된 다른 마을도 있는거 같습니다." -center
## "마을사람" "밤에 정비가 좀 덜 된 산쪽으로 가보았더니. 빛은 없지만 아래쪽에 사람들이 사는거같은 마을이 보였습니다." -center
## "나" "아 그래?"
## "마을사람" "네 그렇습니다. 그곳도 장동지를 만나기전 저희처럼 발달이 덜 되어 보였습니다." -center
## "나" "혹시 어딘지 안내해줄수 있나?"
## "마을사람" "네 알겠습니다." -center
VFX Transition
Load Background "Background\mountaintop"
# "그 사람이 말해준 마을이 보이는 산에 올랐다."
## "나" "아 저기를 말하는건가?"
## "마을사람" "네 그렇습니다." -center
# "낮이라 그런가 움직이는 사람들이 조금 보였다."
# "내가 처음 마을에 떨어졌을때랑 매우 유사했다."
# "다들 굶주린거처럼 보였다."
## "마을사람" "가보는게 어떨까요? 저사람들에게 장동무의 위대함을 알려야죠." -center
## "나" "너무 급해하지 말게 아직 시간 많으니."
## "나" "마을로 가서 좀더 많은 사람을 대리고 가도록 하자."
## "나" "두명은 위험해."
## "마을사람" "네 알겠습니다. 역시 장동무!" -center
# "저곳을 잘 이용하면 더 강해질수 있겠어."
# "일단 오늘은 돌아가도록 하지."
fileFormatVersion: 2
guid: 157f89d032f367144b05fe4bc20a3a4b
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
# "새로운 마을을 발견한지도 시간이 충분히 지났다."
# "이제 새로운 마을을 찾아갈때가 된거같다."
# "어떻게 갈까."
Choice
-- "무장을 한다." -Morale (-20)
-- "먹을걸 들고 간다." -Food (-100) -Morale (+5)
-#
--0 # "무장을 한 군인들을 대리고 가야겠다."
--0 ## "나" "이제 저쪽 마을에 갈 예정이니 안전을 위해 군인들을 준비해주십시오."
--0 # "작업반장" "알겠네."
VFX Transition
Load Character "Character\Crowd\normal" -center
--0 ## "무장한 마을 사람들" "이제 어디로 갑니까." -center
--0 ## "나" "저기 옆 마을로 간다."
--0 ## "무장한 마을 사람들" "저희까지 갈 이유가 있나요?" -center
--0 ## "나" "저들은 아직 발전하지 못한 존재들이다. 갑자기 공격을 해올지 모르니 그렇다."
--0 ## "나" "그러나 저들이 평화적으로 나온다면. 우리도 평화적으로 해결할 것이다."
--0 ## "무장한 마을 사람들" "알겠습니다." -center
--0 ## "나" "가자."
VFX Transition
Unload Character -center
Load Background "Background\AnotherTown"
--0 # "저쪽 마을 입구."
Load Character "Character\NewTownPerson\a\surprised" -right
Load Character "Character\Crowd\normal" -left
--0 ## "???" "아니 무엇이요." -right
--0 ## "무장한 마을 사람들" "이쪽 마을에 볼일이 있어서 왔다." -left
--0 ## "???" "아미 무슨 볼일이란 말이요." -right
--0 ## "무장한 마을 사람들" "자비로운 장동무를 여기 이장에게 대려가라." -left
--0 ## "???" "무슨 소리야!" -right
--0 # "마을 앞에 있던 사람은 빠르게 마을쪽으로 뛰어갔다."
--0 ## "나" "들어가자.
--0 ## "무장한 마을 사람들" "넵." -left
VFX Transition
Unload Character -left
Unload Character -right
--0 # "마을 중앙."
--0 # "사람들이 농기구들을 들고 나와있었고 그 가운대는 이장처럼 보이는 사람이 있었다."
Load Character "Character\NewTownLeader\a\normal" -center
--0 ## "나" "자네가 이곳 이장인가?"
--0 ## "다른 마을 작업반장" "그렇다." -center
--0 ## "나" "우린 대화를 하러왔다."
--0 ## "나" "우린 유혈사태를 원하지 않는다."
--0 ## "나" "금과 우리의 남는 옥수수를 교환하지 않는다면 유혈사태가 발생할것이다."
--0 ## "다른 마을 작업반장" "무슨 소리야." -center
--0 ## "다른 마을 작업반장" "저리 꺼져." -center
--0 ## "나" "협상결렬이군."
--0 ## "나" "우린 돌아가도록 하지."
--0 ## "나" "가자."
--0 ## "무장한 마을 사람들" "넵."
--1 # "저쪽은 먹을게 부족할거같으니. 먹을걸 들고 가도록 하자."
--1 ## "나" "사람들과 남는 먹을것들을 모아주십시오."
--1 # "작업반장" "알겠네."
--1 VFX Transition
--1 # "잠시뒤."
--1 Load Character "Character\Crowd\normal" -center
--1 ## "마을 사람들" "저희는 어디로 갑니까... 혹시 광산에 가는겁니까..?" -center
--1 ## "나" "아니다."
--1 ## "나" "우리는 저쪽 마을에 간다."
--1 ## "마을 사람들" "이 많은 먹을걸 들고요?" -center
--1 ## "나" "응. 저쪽은 많이 굶주린거처럼 보이더라."
--1 ## "마을 사람들" "알겠습니다." -center
--1 ## "나" "가자."
--1 VFX Transition
--1 Unload Character -center
--1 # "저쪽마을 입구."
--1 Load Character "Character\NewTownPerson\a\surprised" -right
--1 Load Character "Character\Crowd\normal" -left
--1 ## "???" "아니 무엇이요." -right
--1 ## "나" "먹을것들을 들고왔소."
--1 ## "나" "이곳에 굶주리고 있는 사람들이 많은거 같아서 말이야."
--1 ## "???" "아아.. 감사합니다." -right
--1 # "매우 굶주린거처럼 보였다."
--1 ## "나" "일단 이거부터 드시오."
--1 ## "???" "아.. 감사합니다." -right
--1 # "그러나 먹지않고 가슴속에 소중히 넣었다."
--1 ## "???" "사람들을 대리고 오겠습니다." -right
--1 ## "나" "아니네 우리가 가지.
--1 ## "???" "네.." -right
VFX Transition
Unload Character -right
Load Character "Character\NewTownLeader\a\normal" -right
--1 # "마을 중앙 이장집"
--1 ## "다른 마을 작업반장" "이나 이게 무슨일이요." -right
--1 ## "???" "다른 마을 사람들이 먹을걸 들고왔습니다." -right
--1 ## "다른 마을 작업반장" "아니.. 이 많은 먹을거를.." -right
--1 ## "다른 마을 작업반장" "어찌 이 심한 기근에 구했습니까.." -right
--1 ## "나" "우리의 기술로 극복해냈지."
--1 ## "다른 마을 작업반장" "아.. 저희도 선진 기술을 가르쳐주실수 있습니까." -right
--1 ## "나" "알겠네. 앞으로 사람을 자주 보내서 가르쳐주도록 하지."
--1 ## "나" "이 음식들은 놓고 갈태니 잘 먹고 우리는 가보도록 하겠네."
--1 ## "???" "벌써 갑니까?" -right
--1 ## "나" "빨리 가야지. 뭘 불편하게 있나."
--1 ## "다른 마을 작업반장" "감..감사합니다." -right
fileFormatVersion: 2
guid: 5c0507d63e73e804489802d756ea099f
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
Load Background "Background\forest"
# "저쪽 마을과 협상이 결렬된지 꽤 시간이 지났다."
# "정복을 위한 준비도 차차 다 되어갔다."
# "그리고 오늘 출발한다."
Load Character "Character\Crowd\normal" -center
## "무장한 마을 사람들" "장 동무. 출발할 준비가 완료되었습니다." -center
## "나" "그래 정복하러 가자."
## "무장한 마을 사람들" "넵." -center
## "무장한 마을 사람들" "출발하자!" -center
## "무장한 마을 사람들" "우와아아아!!!" -center
VFX Transition
Unload Character -center
Load Character "Character\Crowd\normal" -left
Load Character "Character\OtherCrowd\normal" -right
# "다른 마을."
## "나" "가라!"
## "무장한 마을 사람들" "여자는 죽이고! 남자는 겁탈하라!!" -left
## "무장한 마을 사람들" "우워어어어!!" -left
## "무장한 마을 사람들" "푸슉" -left
## "다른 마을 사람들" "으어억" -right
# "이 마을 사람들은 다들 힘없이 쓰러져갔다."
VFX Transition
Unload Character -left
Load Character "Character\NewTownLeader\angry" -right
# "30분뒤."
## "무장한 마을 사람들" "장동지! 우두머리를 잡았습니다!" -left
## "다른 마을 작업반장" "네이놈들!!" -right
## "나" "네놈이 이장인가."
## "다른 마을 작업반장" "그렇다. 그냥 죽여라!"
Choice
-- "자비를 배푼다"
-- "죽인다"
-#
--0 ## "나" "자비를 배풀어주지."
--0 ## "나" "이사람을 마을밖으로 내쫓아라."
--0 ## "나" "영원히 이 마을에 못들어오게 한다."
--0 ## "무장한 마을 사람들" "네 알겠습니다." -left
--0 ## "무장한 마을 사람들" "가자!" -left
--0 ## "다른 마을 작업반장" "네이놈들. 중앙정부가 무섭지도 않느냐.." -right
--0 Unload Character -right
--0 Unload Character -left
--0 Load Character "Character\Crowd\normal" -center
--0 ## "나" "남은 마을사람들을 모아와라."
--0 ## "무장한 마을 사람들" "넵." -left
--0 VFX Transition
--0 # "잠시뒤."
--0 Unload Character -center
--0 Load Character "Character\OtherCrowd\normal" -center
--0 ## "다른 마을 사람들" "웅성웅성..." -center
--0 ## "다른 마을 사람들" "우린 이제 죽는건가.."
--0 ## "나" "다들 걱정할거 없다."
--0 ## "나" "복종한다고 하면 살려주겠다."
--0 ## "나" "복종할 사람은 왼쪽. 아닌 사람은 오른쪽에 모여라."
--0 ## "다른 마을 사람들" "웅성 웅성.."
--0 # "모두 왼쪽에 모여있었다."
--0 ## "나" "그래 모두다 살려주지."
--0 ## "나" "앞으로 우리마을 감독관을 여기에 보내둘것이다."
--0 ## "나" "잘 따르도록."
--1 ## "나" "죽여라."
--1 ## "무장한 마을 사람들" "넵." -left
--1 # "스걱."
--1 ## "다른 마을 작업반장" "으어억. 네이놈들...으윽.." -right
--1 Unload Character -right
--1 Unload Character -left
--1 Load Character "Character\Crowd\normal" -center
--1 ## "나" "사람들을 모아와라."
--1 ## "무장한 마을 사람들" "넵." -center
--1 VFX Transition
--1 Load Character "Character\OtherCrowd\normal" -center
--1 ## "다른 마을 사람들" "웅성웅성." -center
--1 ## "다른 마을 사람들" "뭐지.. 우리 다 죽는건가..." -center
--1 ## "나" "이곳은 이제 우리의 식민지가 되었다."
--1 ## "나" "우리에게 복종하기 싫은 사람은 나와라."
--1 ## "다른 마을 사람들" "웅성웅성.."
--1 ## "다른 마을 사람들" "뭐라고! 네이놈들!!"
--1 ## "나" "누가 놈놈 소리를 내었는가?"
--1 ## "나" "내가 보아하지 저자의 머리속에는 마구니가 가득하다."
--1 ## "나" "저 마구니를 내려 쳐라!"
--1 ## "다른 마을 사람들" "으어어억." -center
# "그렇게 절반정도를 죽이니 끝이 났다."
## "나" "이제 남은 사람들은 복종 한다는 거겠지."
## "나" "우리의 감독관을 군대와 함께 여기에 두겠다."
## "나" "말을 잘 듣도록."
fileFormatVersion: 2
guid: 53dafd50198227546987d0e1fcc06f46
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
Load Background "Background\Townsquare"
# "평화로운 어느날."
# "옆마을 이장이 갑자기 찾아왔다."
Load Character "Character\NewTownleader" -center
## "다른 마을 작업반장" "장 동무."
## "나" "아 네 오셨습니까. 음식이 부족합니까?"
## "다른 마을 작업반장" "아 아닙니다. 장동무의 선진 기술덕에 많은 음식을 얻을수 있어서." -center
## "다른 마을 작업반장" "요즘 풍족하게 살고싶습니다." -center
## "나" "그럼 무슨일이십니까?"
## "다른 마을 작업반장" "저희를 이끌어 주십시오." -center
## "나" "무슨소리인가."
## "다른 마을 작업반장" "저희의 『수령』가 되어주십시오." -center
Choice
-- "받아준다" -FoodP (+50) -Food (-100) -Morale (-30)
-- "안받아준다" -FoodP (+20) -Morale (+30)
-#
--0 ## "나" "알겠소."
--0 ## "나" "앞으로 더 발전된 마을로 나아갑시다."
--0 # "그렇게 저쪽 마을 사람들은 우리 마을에 복종을 해왔다."
--1 ## "나" "아니오."
--1 ## "나" "우리는 형제의 마을이오."
--1 ## "나" "어찌 위아래가 있을수 있겠소."
--1 ## "다른 마을 작업반장" "오오.. 역시 장 동무.." -center
--1 ## "나" "앞으로 더 발전해 나아갑시다."
# "그렇게 우리의 관계는 더 돈독해졌고 더 강한 마을로 나아갔다."
fileFormatVersion: 2
guid: d8fb8d2f2a66e4d4ca31ede575fb4052
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
Load Background "Background\Town"
Load Character "Character\Heroine\b\normal" -center
## "선녀" "요즘 장동무가 오기 전보다 훨신 발전해서 먹을것도 많이 남고 좋은거 같아요." -center
## "나" "(요즘도 그렇게 많이 나은건 아닌거같은데..)"
## "나" "그러게. 엄청 많이 발전했지."
## "선녀" "요즘 먹을거도 많은데 빨리 길들이 복구 됐으면 좋겠어요." -center
## "나" "왜?"
## "선녀" "그냥 마을 안에만 갇혀있으니 새로운거도 없고 해서요." -center
## "나" "그렇군. 그럼 우리가 복구 하는게 어떨까?"
## "선녀" "그래도 될까요?" -center
## "나" "되겠지. 다른 사람들도 길을 복구하길 바랄거야."
## "선녀" "그럼 좋아요!" -center
VFX Transition
Unload Character -center
Load Character "Character\Father\a\normal" -center
## "나" "이장님. 길을 복구할까 하는데 마을 사람들을 모아주십시오."
## "이장" " "길을 복구한다고?" -center
## "나" "그냥 다들 갇혀있는거같아서 답답한가봐요."
## "이장" " "알겠네." -center
VFX Transition
Unload Character -center
Load Character "Character\Farmer\a\normal" -center
# "잠시후"
## "인부들" "무슨일입니까." -center
## "나" "막힌 길을 뚫읍시다."
## "인부들" "마을일을 안해도 괜찮습니까?" -center
## "나" "괜찮네. 지금 먹을건 넘치거든."
## "인부들" "넵 알겠습니다. 최대한 빠르게 해보겠습니다." -center
## "나" "고맙네."
VFX Transition
Unload Character -center
Load Character "Character\Farmer\a\normal" -center
#(몇달뒤)
## "인부1" "길을 어느정도 뚫었습니다." -center
## "인부1" "완전히 다 복구하는건 저희 힘으로 불가능 할거같고." -center
## "인부1" "길을 막고있는것들은 저희 장비로 다 치웠습니다." -center
## "인부1" "그래도 좀 지저분 하지만 이동하는대 문제는 없을겁니다." -center
## "나" "고맙습니다."
## "나" "이제 다시 본 업무로 돌아가죠."
fileFormatVersion: 2
guid: dc8ac82f195e7354086dace396b395f1
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
......@@ -202,52 +202,62 @@ public class EndingGameManager : MonoBehaviour
private bool _IsUnitProducible(string unitName)
{
float mod;
if (game.expansion2Modifier)
mod = 0.7f;
else
mod = 1;
switch (unitName)
{
case "농민":
return game.town.remainFoodAmount >= 20;
return game.town.remainFoodAmount >= 20 * mod;
case "창병":
return game.town.remainFoodAmount >= 20 && game.town.totalIronAmount >= 1;
return game.town.remainFoodAmount >= 20 * mod && game.town.totalIronAmount >= 1 * mod;
case "파이크병":
return game.town.remainFoodAmount >= 50 && game.town.totalIronAmount >= 1;
return game.town.remainFoodAmount >= 50 * mod && game.town.totalIronAmount >= 1 * mod;
case "궁병":
return game.town.remainFoodAmount >= 30;
return game.town.remainFoodAmount >= 30 * mod;
case "석궁병":
return game.town.remainFoodAmount >= 20;
return game.town.remainFoodAmount >= 20 * mod;
case "석궁병(철)":
return game.town.remainFoodAmount >= 20 && game.town.totalIronAmount >= 2;
return game.town.remainFoodAmount >= 20 * mod && game.town.totalIronAmount >= 2 * mod;
case "소총병":
return game.town.remainFoodAmount >= 35 && riflemanCount > 0;
return game.town.remainFoodAmount >= 35 * mod && riflemanCount > 0 * mod;
case "소총병(철)":
return game.town.remainFoodAmount >= 35 && game.town.totalIronAmount >= 2 && riflemanCount > 0;
return game.town.remainFoodAmount >= 35 * mod && game.town.totalIronAmount >= 2 * mod && riflemanCount > 0;
case "기사":
return game.town.remainFoodAmount >= 40 && game.town.totalIronAmount >= 10 && game.town.totalHorseAmount >= 1;
return game.town.remainFoodAmount >= 40 * mod && game.town.totalIronAmount >= 10 * mod && game.town.totalHorseAmount >= 1;
default:
throw new InvalidOperationException("Unit " + unitName + " has not implemented.");
}
}
private int _GetProductionTime(string unitName)
{
switch(unitName)
float mod;
if (game.expansion2Modifier)
mod = 0.7f;
else
mod = 1;
switch (unitName)
{
case "농민":
return 1;
return (int)(1 * mod);
case "창병":
return 2;
return (int)(2 * mod);
case "파이크병":
return 3;
return (int)(3 * mod);
case "궁병":
return 5;
return (int)(5 * mod);
case "석궁병":
return 3;
return (int)(3 * mod);
case "석궁병(철)":
return 4;
return (int)(4 * mod);
case "소총병":
return 5;
return (int)(5 * mod);
case "소총병(철)":
return 6;
return (int)(6 * mod);
case "기사":
return 5;
return (int)(5 * mod);
default:
throw new InvalidOperationException("Unit " + unitName + " has not implemented.");
}
......@@ -288,41 +298,46 @@ public class EndingGameManager : MonoBehaviour
private void _ConsumeResource(string unitName)
{
float mod;
if (game.expansion2Modifier)
mod = 0.7f;
else
mod = 1;
switch (unitName)
{
case "농민":
game.town.remainFoodAmount -= 20;
game.town.remainFoodAmount -= 20 * mod;
break;
case "창병":
game.town.remainFoodAmount -= 20;
game.town.totalIronAmount -= 1;
game.town.remainFoodAmount -= 20 * mod;
game.town.totalIronAmount -= 1 * mod;
break;
case "파이크병":
game.town.remainFoodAmount -= 50;
game.town.totalIronAmount -= 1;
game.town.remainFoodAmount -= 50 * mod;
game.town.totalIronAmount -= 1 * mod;
break;
case "궁병":
game.town.remainFoodAmount -= 30;
game.town.remainFoodAmount -= 30 * mod;
break;
case "석궁병":
game.town.remainFoodAmount -= 20;
game.town.remainFoodAmount -= 20 * mod;
break;
case "석궁병(철)":
game.town.remainFoodAmount -= 20;
game.town.totalIronAmount -= 2;
game.town.remainFoodAmount -= 20 * mod;
game.town.totalIronAmount -= 2 * mod;
break;
case "소총병":
game.town.remainFoodAmount -= 35;
game.town.remainFoodAmount -= 35 * mod;
--riflemanCount;
break;
case "소총병(철)":
game.town.remainFoodAmount -= 35;
game.town.totalIronAmount -= 2;
game.town.remainFoodAmount -= 35 * mod;
game.town.totalIronAmount -= 2 * mod;
--riflemanCount;
break;
case "기사":
game.town.remainFoodAmount -= 40;
game.town.totalIronAmount -= 10;
game.town.remainFoodAmount -= 40 * mod;
game.town.totalIronAmount -= 10 * mod;
game.town.totalHorseAmount -= 1;
break;
}
......
......@@ -59,6 +59,12 @@ public abstract class EndingGameUnit : MonoBehaviour
}
}
public virtual void Start()
{
if (endingGame.game.expansion1Modifier)
attackPower = (int)(attackPower * 1.3);
}
public virtual void Update()
{
if (endingGame.isInWave)
......
......@@ -12,8 +12,9 @@ public class Knight : EndingGameUnit
public override bool isAllyUnit => true;
public override float unitSize => 6;
private void Start()
public override void Start()
{
base.Start();
if (GameManager.instance.game.horseRaisingKnightModifier)
{
hp = (int)(hp * 1.5f);
......
......@@ -11,8 +11,9 @@ public class NKLieutenant : EndingGameUnit
public override int attackRange { get { return 10; } }
public override bool isAllyUnit => false;
private void Start()
public override void Start()
{
base.Start();
foreach(GameObject unit in endingGame.deployedEnemyUnits)
{
if (unit.GetComponent<EndingGameUnit>().unitNumber == 10)
......
......@@ -11,8 +11,10 @@ public class Rifleman : EndingGameUnit
public override int attackRange { get { return 20; } }
public override bool isAllyUnit => true;
void Start()
public override void Start()
{
base.Start();
if (GameManager.instance.game.bomRifleManAtkModifier)
attackPower = (int)(attackPower * 1.2f);
......
fileFormatVersion: 2
guid: 08d366f61f185014fbea5343dee060f3
TextureImporter:
fileIDToRecycleName: {}
externalObjects: {}
serializedVersion: 7
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: -1
aniso: -1
mipBias: -100
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
platformSettings:
- serializedVersion: 2
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: d6b1696fbcf14924b97d90be3bec0a91
vertices: []
indices:
edges: []
weights: []
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
fileFormatVersion: 2
guid: b456aec72fbc246489660ee1b8f1adec
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
fileFormatVersion: 2
guid: f9d8631df8cf28d44ad448955a3d4c50
TextureImporter:
fileIDToRecycleName: {}
externalObjects: {}
serializedVersion: 7
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: -1
aniso: -1
mipBias: -100
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
platformSettings:
- serializedVersion: 2
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: c6bccf27c51affa41b94e45ca96cf1a0
vertices: []
indices:
edges: []
weights: []
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
fileFormatVersion: 2
guid: 3219541edd0cb8942850ee2dbd89f463
TextureImporter:
fileIDToRecycleName: {}
externalObjects: {}
serializedVersion: 7
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: -1
aniso: -1
mipBias: -100
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
platformSettings:
- serializedVersion: 2
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: d267813fc33068d4cb10faad0ff5e5ea
vertices: []
indices:
edges: []
weights: []
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
fileFormatVersion: 2
guid: 416ec0b53c1161c42a8a16f1b519a911
TextureImporter:
fileIDToRecycleName: {}
externalObjects: {}
serializedVersion: 7
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: -1
aniso: -1
mipBias: -100
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
platformSettings:
- serializedVersion: 2
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: ed52789ddb0dced47886d9a8dfa4ae82
vertices: []
indices:
edges: []
weights: []
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
fileFormatVersion: 2
guid: a1bd655454802f74a9a8a887752a116d
TextureImporter:
fileIDToRecycleName: {}
externalObjects: {}
serializedVersion: 7
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: -1
aniso: -1
mipBias: -100
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
platformSettings:
- serializedVersion: 2
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 8636cad0239d695419226dd55df37dee
vertices: []
indices:
edges: []
weights: []
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
fileFormatVersion: 2
guid: a15c561e0eb27e54aae17bafd05d7d14
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
fileFormatVersion: 2
guid: dda96be512787eb43b03b20efa0620a6
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
fileFormatVersion: 2
guid: c6a7ce00aad9e9c46ade26ac2dba7906
TextureImporter:
fileIDToRecycleName: {}
externalObjects: {}
serializedVersion: 7
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: -1
aniso: -1
mipBias: -100
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
platformSettings:
- serializedVersion: 2
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 3d95323631a87dd4c89deeab26e72ee5
vertices: []
indices:
edges: []
weights: []
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
fileFormatVersion: 2
guid: 18d730bf3094be148ba7ec112a04b0be
TextureImporter:
fileIDToRecycleName: {}
externalObjects: {}
serializedVersion: 7
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: -1
aniso: -1
mipBias: -100
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
platformSettings:
- serializedVersion: 2
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 2b9fb14b86d10334c8554f8ab9f286e4
vertices: []
indices:
edges: []
weights: []
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
fileFormatVersion: 2
guid: 35a1774e56439e14b9b98fa67922cbbc
TextureImporter:
fileIDToRecycleName: {}
externalObjects: {}
serializedVersion: 7
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: -1
aniso: -1
mipBias: -100
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
platformSettings:
- serializedVersion: 2
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: fba4955d31a3ee145afe066dc73637d2
vertices: []
indices:
edges: []
weights: []
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment