Jelajahi Sumber

1.7.9 build

mbunch_kascope 1 tahun lalu
induk
melakukan
d75d6e00da

+ 6 - 8
Assets/CardEffect/BT20/Purple/BT20_076.cs

@@ -158,8 +158,7 @@ namespace DCGO.CardEffects.BT20
 
                 bool CanActivateCondition(Hashtable hashtable)
                 {
-                    return CardEffectCommons.IsExistOnBattleAreaDigimon(card) &&
-                           CardEffectCommons.HasMatchConditionPermanent(CanSelectPermanentCondition);
+                    return CardEffectCommons.IsExistOnBattleAreaDigimon(card);
                 }
 
                 IEnumerator ActivateCoroutine(Hashtable _hashtable)
@@ -220,7 +219,7 @@ namespace DCGO.CardEffects.BT20
                                 yield return ContinuousController.instance.StartCoroutine(CardEffectCommons.DigivolveIntoHandOrTrashCard(
                                 targetPermanent: card.PermanentOfThisCard(),
                                 cardCondition: CanSelectDigivolveCondition,
-                                payCost: true,
+                                payCost: false,
                                 reduceCostTuple: null,
                                 fixedCostTuple: null,
                                 ignoreDigivolutionRequirementFixedCost: -1,
@@ -233,7 +232,7 @@ namespace DCGO.CardEffects.BT20
                                 yield return ContinuousController.instance.StartCoroutine(CardEffectCommons.DigivolveIntoHandOrTrashCard(
                                 targetPermanent: card.PermanentOfThisCard(),
                                 cardCondition: CanSelectDigivolveCondition,
-                                payCost: true,
+                                payCost: false,
                                 reduceCostTuple: null,
                                 fixedCostTuple: null,
                                 ignoreDigivolutionRequirementFixedCost: -1,
@@ -287,8 +286,7 @@ namespace DCGO.CardEffects.BT20
 
                 bool CanActivateCondition(Hashtable hashtable)
                 {
-                    return CardEffectCommons.IsExistOnBattleAreaDigimon(card) &&
-                           CardEffectCommons.HasMatchConditionPermanent(CanSelectPermanentCondition);
+                    return CardEffectCommons.IsExistOnBattleAreaDigimon(card); ;
                 }
 
                 IEnumerator ActivateCoroutine(Hashtable _hashtable)
@@ -349,7 +347,7 @@ namespace DCGO.CardEffects.BT20
                                 yield return ContinuousController.instance.StartCoroutine(CardEffectCommons.DigivolveIntoHandOrTrashCard(
                                 targetPermanent: card.PermanentOfThisCard(),
                                 cardCondition: CanSelectDigivolveCondition,
-                                payCost: true,
+                                payCost: false,
                                 reduceCostTuple: null,
                                 fixedCostTuple: null,
                                 ignoreDigivolutionRequirementFixedCost: -1,
@@ -362,7 +360,7 @@ namespace DCGO.CardEffects.BT20
                                 yield return ContinuousController.instance.StartCoroutine(CardEffectCommons.DigivolveIntoHandOrTrashCard(
                                 targetPermanent: card.PermanentOfThisCard(),
                                 cardCondition: CanSelectDigivolveCondition,
-                                payCost: true,
+                                payCost: false,
                                 reduceCostTuple: null,
                                 fixedCostTuple: null,
                                 ignoreDigivolutionRequirementFixedCost: -1,

+ 2 - 2
Assets/CardEffect/BT20/Purple/BT20_097.cs

@@ -157,7 +157,7 @@ namespace DCGO.CardEffects.BT20
                 bool IsDeathXmon(CardSource source)
                 {
                     return source.EqualsCardName("DeathXmon") &&
-                           CardEffectCommons.CanPlayAsNewPermanent(source, false, activateClass);
+                           CardEffectCommons.CanPlayAsNewPermanent(source, false, activateClass, SelectCardEffect.Root.Trash);
                 }
 
                 bool CanUseCondition(Hashtable hashtable)
@@ -252,7 +252,7 @@ namespace DCGO.CardEffects.BT20
                                         canNoSelect: () => false,
                                         selectCardCoroutine: SelectCardCoroutine,
                                         afterSelectCardCoroutine: null,
-                                        message: "Select 1 digivolution card.",
+                                        message: "Select 1 [DeathXmon] to play.",
                                         maxCount: 1,
                                         canEndNotMax: false,
                                         isShowOpponent: true,

+ 2 - 2
Assets/CardEffect/BT20/Red/BT20_014.cs

@@ -45,7 +45,7 @@ namespace DCGO.CardEffects.BT20
                     SelectPermanentEffect selectPermanentEffect = GManager.instance.GetComponent<SelectPermanentEffect>();
 
                     selectPermanentEffect.SetUp(
-                        selectPlayer: card.Owner.Enemy,
+                        selectPlayer: card.Owner,
                         canTargetCondition: CanSelectPermanent,
                         canTargetCondition_ByPreSelecetedList: null,
                         canEndSelectCondition: null,
@@ -101,7 +101,7 @@ namespace DCGO.CardEffects.BT20
                     SelectPermanentEffect selectPermanentEffect = GManager.instance.GetComponent<SelectPermanentEffect>();
 
                     selectPermanentEffect.SetUp(
-                        selectPlayer: card.Owner.Enemy,
+                        selectPlayer: card.Owner,
                         canTargetCondition: CanSelectPermanent,
                         canTargetCondition_ByPreSelecetedList: null,
                         canEndSelectCondition: null,

+ 46 - 11
Assets/CardEffect/BT20/Red/BT20_019.cs

@@ -92,7 +92,7 @@ namespace DCGO.CardEffects.BT20
                                     canTargetCondition_ByPreSelecetedList: null,
                                     canEndSelectCondition: null,
                                     maxCount: maxCount,
-                                    canNoSelect: true,
+                                    canNoSelect: false,
                                     canEndNotMax: false,
                                     selectPermanentCoroutine: SelectPermanentCoroutine,
                                     afterSelectPermanentCoroutine: null,
@@ -113,7 +113,7 @@ namespace DCGO.CardEffects.BT20
                                     CanNotAffectedClass canNotAffectedClass = new CanNotAffectedClass();
                                     canNotAffectedClass.SetUpICardEffect("Isn't affected by opponent's effects.", CanUseConditionImmunity, card);
                                     canNotAffectedClass.SetUpCanNotAffectedClass(CardCondition: CardCondition, SkillCondition: SkillCondition);
-                                    card.Owner.UntilEachTurnEndEffects.Add(GetCardEffect);
+                                    immunityPermanent.UntilEachTurnEndEffects.Add(GetCardEffect);
 
                                     bool CanUseConditionImmunity(Hashtable hashtable)
                                     {
@@ -214,7 +214,7 @@ namespace DCGO.CardEffects.BT20
             if (timing == EffectTiming.None)
             {
                 AddSkillClass addSkillClass = new AddSkillClass();
-                addSkillClass.SetUpICardEffect("[Your Turn] All of your Digimon with [Sistermon] or the [Royal Knight] trait gain <Piercing> and can attack your opponent's unsuspended Digimon.", CanUseCondition, card);
+                addSkillClass.SetUpICardEffect("Your Digimon with [Sistermon] in their names or the [Royal Knight] trait gain Pierce", CanUseCondition, card);
                 addSkillClass.SetUpAddSkillClass(cardSourceCondition: CardSourceCondition, getEffects: GetEffects);
                 cardEffects.Add(addSkillClass);
 
@@ -244,7 +244,15 @@ namespace DCGO.CardEffects.BT20
 
                 bool CardSourceCondition(CardSource cardSource)
                 {
-                    return PermanentCondition(cardSource.PermanentOfThisCard());
+                    if (PermanentCondition(cardSource.PermanentOfThisCard()))
+                    {
+                        if (cardSource == cardSource.PermanentOfThisCard().TopCard)
+                        {
+                            return true;
+                        }
+                    }
+
+                    return false;
                 }
 
                 List<ICardEffect> GetEffects(CardSource cardSource, List<ICardEffect> cardEffects, EffectTiming _timing)
@@ -256,20 +264,46 @@ namespace DCGO.CardEffects.BT20
                             return CardSourceCondition(cardSource);
                         }
 
-                        cardEffects.Add(CardEffectFactory.PierceSelfEffect(isInheritedEffect: false, card: card, condition: Condition));
+                        cardEffects.Add(CardEffectFactory.PierceSelfEffect(
+                            isInheritedEffect: false,
+                            card: cardSource,
+                            condition: Condition));
                     }
 
                     return cardEffects;
                 }
+            }
+
+            if (timing == EffectTiming.None)
+            {
 
                 CanAttackTargetDefendingPermanentClass canAttackTargetDefendingPermanentClass = new CanAttackTargetDefendingPermanentClass();
-                canAttackTargetDefendingPermanentClass.SetUpICardEffect($"Can attack to unsuspended Digimon", CanUseCondition1, card);
+                canAttackTargetDefendingPermanentClass.SetUpICardEffect($"Can attack to unsuspended Digimon", CanUseCondition, card);
                 canAttackTargetDefendingPermanentClass.SetUpCanAttackTargetDefendingPermanentClass(attackerCondition: PermanentCondition, defenderCondition: DefenderCondition, cardEffectCondition: CardEffectCondition);
                 cardEffects.Add(canAttackTargetDefendingPermanentClass);
 
-                bool CanUseCondition1(Hashtable hashtable)
+                bool PermanentCondition(Permanent permanent)
                 {
-                    return CardEffectCommons.IsExistOnBattleAreaDigimon(card);
+                    if (CardEffectCommons.IsPermanentExistsOnOwnerBattleAreaDigimon(permanent, card))
+                    {
+                        if (permanent.TopCard.ContainsCardName("Sistermon") || permanent.TopCard.HasRoyalKnightTraits)
+                            return true;
+                    }
+
+                    return false;
+                }
+
+                bool CanUseCondition(Hashtable hashtable)
+                {
+                    if (CardEffectCommons.IsExistOnBattleAreaDigimon(card))
+                    {
+                        if (CardEffectCommons.IsOwnerTurn(card))
+                        {
+                            return true;
+                        }
+                    }
+
+                    return false;
                 }
 
                 bool DefenderCondition(Permanent permanent)
@@ -293,7 +327,7 @@ namespace DCGO.CardEffects.BT20
             #endregion
 
             #region Your Turn - ESS
-            if(timing == EffectTiming.None)
+            if (timing == EffectTiming.None)
             {
                 AddSkillClass addSkillClass = new AddSkillClass();
                 addSkillClass.SetUpICardEffect("[Your Turn] While this Digimon is [Jesmon GX], all of your Digimon gain <Piercing> and can also attack your opponent's unsuspended Digimon.", CanUseCondition, card);
@@ -307,7 +341,7 @@ namespace DCGO.CardEffects.BT20
                     {
                         if (CardEffectCommons.IsOwnerTurn(card))
                         {
-                            return card.PermanentOfThisCard().TopCard.EqualsCardName("Jesmon GX");
+                            return true;
                         }
                     }
 
@@ -316,7 +350,8 @@ namespace DCGO.CardEffects.BT20
 
                 bool PermanentCondition(Permanent permanent)
                 {
-                    return CardEffectCommons.IsPermanentExistsOnOwnerBattleAreaDigimon(permanent, card);
+                    return card.PermanentOfThisCard().TopCard.EqualsCardName("Jesmon GX") &&
+                           CardEffectCommons.IsPermanentExistsOnOwnerBattleAreaDigimon(permanent, card);
                 }
 
                 bool CardSourceCondition(CardSource cardSource)

+ 51 - 48
Assets/CardEffect/BT20/Red/BT20_094.cs

@@ -195,7 +195,7 @@ namespace DCGO.CardEffects.BT20
                 }
                 
                 bool isImperialdramonFighterMode(Permanent permanent)
-                {                    
+                {
                     return CardEffectCommons.IsPermanentExistsOnOwnerBattleAreaDigimon(permanent, card) &&
                            permanent.TopCard.EqualsCardName("Imperialdramon: Fighter Mode") &&
                            (permanent.DigivolutionCards.Count(isImperialdramonDragonMode) >= 1);
@@ -210,12 +210,12 @@ namespace DCGO.CardEffects.BT20
                 bool CanUseCondition(Hashtable hashtable)
                 {
                     return CardEffectCommons.CanDeclareOptionDelayEffect(card) &&
-                           CardEffectCommons.CanTriggerWhenLoseSecurity(hashtable, player => player == card.Owner.Enemy) &&
-                           CardEffectCommons.HasMatchConditionPermanent(isImperialdramonFighterMode);
+                           CardEffectCommons.CanTriggerWhenLoseSecurity(hashtable, player => player == card.Owner.Enemy);
                 }
                 
                 IEnumerator ActivateCoroutine(Hashtable hashtable)
                 {
+                    bool destoryed = false;
                     yield return ContinuousController.instance.StartCoroutine(
                         CardEffectCommons.DeletePeremanentAndProcessAccordingToResult(
                             targetPermanents: new List<Permanent>() { card.PermanentOfThisCard() },
@@ -223,6 +223,12 @@ namespace DCGO.CardEffects.BT20
                             failureProcess: null));
 
                     IEnumerator SuccessProcess()
+                    {
+                        destoryed = true;
+                        yield return null;
+                    }
+
+                    if (destoryed)
                     {
                         if (CardEffectCommons.HasMatchConditionPermanent(isImperialdramonFighterMode))
                         {
@@ -251,60 +257,57 @@ namespace DCGO.CardEffects.BT20
 
                             IEnumerator SelectPermanentCoroutine(Permanent permanent)
                             {
-                                Permanent selectedPermanent = permanent;
+                                selectedPermanent = permanent;
 
                                 yield return null;
                             }
 
                             if (selectedPermanent != null)
                             {
-                                if (selectedPermanent.DigivolutionCards.Count(isImperialdramonDragonMode) >= 1)
+                                List<CardSource> selectedCards = new List<CardSource>();
+
+                                SelectCardEffect selectCardEffect = GManager.instance.GetComponent<SelectCardEffect>();
+
+                                selectCardEffect.SetUp(
+                                    canTargetCondition: isImperialdramonDragonMode,
+                                    canTargetCondition_ByPreSelecetedList: null,
+                                    canEndSelectCondition: null,
+                                    canNoSelect: () => true,
+                                    selectCardCoroutine: SelectCardCoroutine,
+                                    afterSelectCardCoroutine: null,
+                                    message: "Select 1 digivolution card to play.",
+                                    maxCount: 1,
+                                    canEndNotMax: false,
+                                    isShowOpponent: true,
+                                    mode: SelectCardEffect.Mode.Custom,
+                                    root: SelectCardEffect.Root.Custom,
+                                    customRootCardList: selectedPermanent.DigivolutionCards,
+                                    canLookReverseCard: true,
+                                    selectPlayer: card.Owner,
+                                    cardEffect: activateClass);
+
+                                selectCardEffect.SetUpCustomMessage(
+                                    "Select 1 digivolution card to play.",
+                                    "The opponent is selecting 1 digivolution card to play.");
+                                selectCardEffect.SetUpCustomMessage_ShowCard("Played Card");
+
+                                yield return StartCoroutine(selectCardEffect.Activate());
+
+                                IEnumerator SelectCardCoroutine(CardSource cardSource)
                                 {
-                                    List<CardSource> selectedCards = new List<CardSource>();
-
-                                    SelectCardEffect selectCardEffect = GManager.instance.GetComponent<SelectCardEffect>();
-
-                                    selectCardEffect.SetUp(
-                                        canTargetCondition: isImperialdramonDragonMode,
-                                        canTargetCondition_ByPreSelecetedList: null,
-                                        canEndSelectCondition: null,
-                                        canNoSelect: () => true,
-                                        selectCardCoroutine: SelectCardCoroutine,
-                                        afterSelectCardCoroutine: null,
-                                        message: "Select 1 digivolution card to play.",
-                                        maxCount: 1,
-                                        canEndNotMax: false,
-                                        isShowOpponent: true,
-                                        mode: SelectCardEffect.Mode.Custom,
-                                        root: SelectCardEffect.Root.Custom,
-                                        customRootCardList: selectedPermanent.DigivolutionCards,
-                                        canLookReverseCard: true,
-                                        selectPlayer: card.Owner,
-                                        cardEffect: activateClass);
-
-                                    selectCardEffect.SetUpCustomMessage(
-                                        "Select 1 digivolution card to play.",
-                                        "The opponent is selecting 1 digivolution card to play.");
-                                    selectCardEffect.SetUpCustomMessage_ShowCard("Played Card");
-
-                                    yield return StartCoroutine(selectCardEffect.Activate());
-
-                                    IEnumerator SelectCardCoroutine(CardSource cardSource)
-                                    {
-                                        selectedCards.Add(cardSource);
-
-                                        yield return null;
-                                    }
+                                    selectedCards.Add(cardSource);
 
-                                    yield return ContinuousController.instance.StartCoroutine(
-                                        CardEffectCommons.PlayPermanentCards(
-                                            cardSources: selectedCards,
-                                            activateClass: activateClass,
-                                            payCost: false,
-                                            isTapped: false,
-                                            root: SelectCardEffect.Root.DigivolutionCards,
-                                            activateETB: true));
+                                    yield return null;
                                 }
+
+                                yield return ContinuousController.instance.StartCoroutine(
+                                    CardEffectCommons.PlayPermanentCards(
+                                        cardSources: selectedCards,
+                                        activateClass: activateClass,
+                                        payCost: false,
+                                        isTapped: false,
+                                        root: SelectCardEffect.Root.DigivolutionCards,
+                                        activateETB: true));
                             }
                         }
                     }

+ 0 - 4
Assets/CardEffect/EX8/Purple/EX8_059.cs

@@ -186,8 +186,6 @@ namespace DCGO.CardEffects.EX8
 
                                     IEnumerator ActivateCoroutine1(Hashtable _hashtable1)
                                     {
-                                        yield return ContinuousController.instance.StartCoroutine(_topCard.Owner.AddMemory(-1, activateClass1));
-
                                         SelectHandEffect selectHandEffect = GManager.instance.GetComponent<SelectHandEffect>();
 
                                         selectHandEffect.SetUp(
@@ -363,8 +361,6 @@ namespace DCGO.CardEffects.EX8
 
                                     IEnumerator ActivateCoroutine1(Hashtable _hashtable1)
                                     {
-                                        yield return ContinuousController.instance.StartCoroutine(_topCard.Owner.AddMemory(-1, activateClass1));
-
                                         SelectHandEffect selectHandEffect = GManager.instance.GetComponent<SelectHandEffect>();
 
                                         selectHandEffect.SetUp(

+ 0 - 0
Assets/CardBaseEntity/BT20/Black/Digimon/BT20_053_P1.asset → Assets/Editor/Missing AAs/BT20/Black/Digimon/BT20_053_P1.asset


+ 0 - 0
Assets/CardBaseEntity/BT20/Black/Digimon/BT20_053_P1.asset.meta → Assets/Editor/Missing AAs/BT20/Black/Digimon/BT20_053_P1.asset.meta


+ 0 - 0
Assets/CardBaseEntity/BT20/Purple/Digimon/BT20_068_P1.asset → Assets/Editor/Missing AAs/BT20/Purple/Digimon/BT20_068_P1.asset


+ 0 - 0
Assets/CardBaseEntity/BT20/Purple/Digimon/BT20_068_P1.asset.meta → Assets/Editor/Missing AAs/BT20/Purple/Digimon/BT20_068_P1.asset.meta


+ 0 - 0
Assets/CardBaseEntity/BT20/Purple/Digimon/BT20_069_P1.asset → Assets/Editor/Missing AAs/BT20/Purple/Digimon/BT20_069_P1.asset


+ 0 - 0
Assets/CardBaseEntity/BT20/Purple/Digimon/BT20_069_P1.asset.meta → Assets/Editor/Missing AAs/BT20/Purple/Digimon/BT20_069_P1.asset.meta


+ 0 - 0
Assets/CardBaseEntity/BT20/Red/Digimon/BT20_015_P1.asset → Assets/Editor/Missing AAs/BT20/Red/Digimon/BT20_015_P1.asset


+ 0 - 0
Assets/CardBaseEntity/BT20/Red/Digimon/BT20_015_P1.asset.meta → Assets/Editor/Missing AAs/BT20/Red/Digimon/BT20_015_P1.asset.meta


+ 0 - 0
Assets/CardBaseEntity/BT20/White/Digimon/BT20_083_P1.asset → Assets/Editor/Missing AAs/BT20/White/Digimon/BT20_083_P1.asset


+ 0 - 0
Assets/CardBaseEntity/BT20/White/Digimon/BT20_083_P1.asset.meta → Assets/Editor/Missing AAs/BT20/White/Digimon/BT20_083_P1.asset.meta


+ 0 - 10
Assets/Scenes/ContinuousControllerScene.unity

@@ -486,7 +486,6 @@ MonoBehaviour:
   - {fileID: 11400000, guid: eb57653656d1c24439033637d6e3255e, type: 2}
   - {fileID: 11400000, guid: 28a409b627fddcf48a5af1a339fb6fd0, type: 2}
   - {fileID: 11400000, guid: c97cd930ea8baa04bb76575df9d63b89, type: 2}
-  - {fileID: 11400000, guid: dc403e515fbffac4fbfb23f1da80a2fc, type: 2}
   - {fileID: 11400000, guid: ac91265beb4ff9240b58cb4696e3c2b7, type: 2}
   - {fileID: 11400000, guid: 5f7294d4c18ea944393c3f6e8b14b8bc, type: 2}
   - {fileID: 11400000, guid: 760d3770f1663c54dbbd999332ee823b, type: 2}
@@ -551,7 +550,6 @@ MonoBehaviour:
   - {fileID: 11400000, guid: f3e252b3042085a468242c36abb919a7, type: 2}
   - {fileID: 11400000, guid: cf21db42ca6b02a4eb32b4de92437f7d, type: 2}
   - {fileID: 11400000, guid: 400ecdb9a766c3c47b691edbae58f184, type: 2}
-  - {fileID: 11400000, guid: f6abc206dbd83424f9ac64829cca4576, type: 2}
   - {fileID: 11400000, guid: d4260e26531eb9840a6debe88677ce5b, type: 2}
   - {fileID: 11400000, guid: 3d21f1c394f25c34297d6ba3d174cf09, type: 2}
   - {fileID: 11400000, guid: 40d0d4b83e73eeb4aa9ac18ad2124cf6, type: 2}
@@ -577,9 +575,7 @@ MonoBehaviour:
   - {fileID: 11400000, guid: b5f51620eea56154e8c6f1eec81810c9, type: 2}
   - {fileID: 11400000, guid: fa9e5c928a5de2943aa1e38067712d1d, type: 2}
   - {fileID: 11400000, guid: 83fe7c9a39ba60a4b91f9ff705e4a00c, type: 2}
-  - {fileID: 11400000, guid: 8e65f06c4e36d7a4cb7f406fb6aaab2e, type: 2}
   - {fileID: 11400000, guid: 92171d1afa5b3ad409a32af6ebe622d2, type: 2}
-  - {fileID: 11400000, guid: 9d10581a72a6e97448832dcec8ea8e6b, type: 2}
   - {fileID: 11400000, guid: fbfdc4bb99a84ac4f986f4b94605ebca, type: 2}
   - {fileID: 11400000, guid: eabbe79b429fce74a9400ba4120dfb13, type: 2}
   - {fileID: 11400000, guid: 7bf6406de21ca6d4e8f7d21587aef369, type: 2}
@@ -610,7 +606,6 @@ MonoBehaviour:
   - {fileID: 11400000, guid: a02b2aab5b446684090c12701e40effd, type: 2}
   - {fileID: 11400000, guid: 86ee2d9d46693db48b4a25ccb8bc7de3, type: 2}
   - {fileID: 11400000, guid: c62e0a514cd528a429f454b06d5770d1, type: 2}
-  - {fileID: 11400000, guid: 621195236d987864c95bf48783d40abd, type: 2}
   - {fileID: 11400000, guid: 19db9ba2c89ca164d885ad7aafe9b456, type: 2}
   - {fileID: 11400000, guid: 29379ee5b9c5b3f4591b704c939cd9e8, type: 2}
   - {fileID: 11400000, guid: a00b0cc542e9fa54fb1bd4185bd52a6f, type: 2}
@@ -11157,7 +11152,6 @@ MonoBehaviour:
   - {fileID: 11400000, guid: 89f86d8ad73bcac448d4ea6d40fc469d, type: 2}
   - {fileID: 11400000, guid: a727bebf51f07d34c8eca1c8abb35ba2, type: 2}
   - {fileID: 11400000, guid: 92c78fb8b9e1d0d41a36d7f9b2d070b4, type: 2}
-  - {fileID: 11400000, guid: dc403e515fbffac4fbfb23f1da80a2fc, type: 2}
   - {fileID: 11400000, guid: 3488b3abd6399b0469a622ddf964891d, type: 2}
   - {fileID: 11400000, guid: a981c750be56b984a97acaeb2dcd065e, type: 2}
   - {fileID: 11400000, guid: 6cc6e078802f3d041b914e2db0538961, type: 2}
@@ -11166,19 +11160,15 @@ MonoBehaviour:
   - {fileID: 11400000, guid: b1f08d563ff1a63488ed5f4ce3d5d931, type: 2}
   - {fileID: 11400000, guid: 413ec71837581404c8cd1ad067ff640d, type: 2}
   - {fileID: 11400000, guid: 86a424d55d76f8e41aee21032adb0099, type: 2}
-  - {fileID: 11400000, guid: f6abc206dbd83424f9ac64829cca4576, type: 2}
   - {fileID: 11400000, guid: e361afc0ed3cf9a41815f703b86589a2, type: 2}
   - {fileID: 11400000, guid: 00264d18160cf4d4b8f82d4b03bc2477, type: 2}
   - {fileID: 11400000, guid: 0c4ac15ed987e98498adb7c08509735f, type: 2}
-  - {fileID: 11400000, guid: 8e65f06c4e36d7a4cb7f406fb6aaab2e, type: 2}
-  - {fileID: 11400000, guid: 9d10581a72a6e97448832dcec8ea8e6b, type: 2}
   - {fileID: 11400000, guid: d28d84cbf12cbd2418b210637bb497cb, type: 2}
   - {fileID: 11400000, guid: 774ff7cad9aad82458c5903144806aad, type: 2}
   - {fileID: 11400000, guid: e49a56f0017b4c74eb441a569691380d, type: 2}
   - {fileID: 11400000, guid: d34b27b7c43b65e40a16245ea2a29700, type: 2}
   - {fileID: 11400000, guid: 54f4cba316a955f48b4c9ffad4c5ca0d, type: 2}
   - {fileID: 11400000, guid: 8e99e006f9112cc4d8152cb4083793e3, type: 2}
-  - {fileID: 11400000, guid: 621195236d987864c95bf48783d40abd, type: 2}
   - {fileID: 11400000, guid: f79b3496630b6c4429a063d89f963871, type: 2}
   - {fileID: 11400000, guid: 55115ba64faf61948b2917e1e934ff61, type: 2}
   - {fileID: 11400000, guid: 2492234abccc43b42927eedeb2092e57, type: 2}

+ 1 - 1
ProjectSettings/ProjectSettings.asset

@@ -1,3 +1,3 @@
 version https://git-lfs.github.com/spec/v1
-oid sha256:e8b19493d57b13682bd60b04a1868a1dc1a5db4444802c785781fbb4aea2b2c5
+oid sha256:e1b081603656da6a02a507f6733f455e936eddefb55c8c946378289d170d0472
 size 20168