-
Notifications
You must be signed in to change notification settings - Fork 0
♻️ 雪玉系Objectの処理を重力飛翔体抽象を継承する仕様に変更 #1857
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
56ec633
[Object 5] 重力飛翔体抽象に存在時間を超過した際の処理を追加
Lapis-LJA efc7b99
[Artifact 35, Object 1002] 魔女に与える鉄槌の処理を重力飛翔体抽象を継承するように
Lapis-LJA 9283a56
[Artifact 1120, Object 1053] 火炎放射器の処理を重力飛翔体抽象を継承するように
Lapis-LJA 792332a
[Artifact 1206, Object 1106] トリプルスパークルボムの処理を重力飛翔体抽象を継承するように
Lapis-LJA 436439e
[Artifact 1197, 1110] ヘヴィラヴァボムの処理を重力飛翔体抽象を継承するように
Lapis-LJA 4b4b13d
[Artifact 1120, Object 1053] 火炎放射器の攻撃対象が単体でない問題を修正
Lapis-LJA ccf2558
[Artifact 1037, Object 1041] グランド・フレイムの処理を重力飛翔体抽象を継承するように
Lapis-LJA 10ac336
[Artifact 1264, Object 1139] シンプルグレネードの処理を重力飛翔体抽象を継承するように
Lapis-LJA d21314e
[Artifact 464, Object 1086] サンダーボルトエクスプロイトの処理を重力飛翔体抽象を継承するように
Lapis-LJA d1578dc
[Artifact 1197, Object 1110] ヘヴィラヴァボムの処理を修正
Lapis-LJA 1480683
[Artifact 1197, Object 1110] ヘヴィラヴァボムのMotionが固定になっていた問題を修正
Lapis-LJA 89e4af8
[Artifact 1264, Object 1139] シンプルグレネードのモーションを固定してしまっていた問題を修正
Lapis-LJA b5185c7
[Object 5] 重力飛翔体抽象のrange_overを呼び出す条件を調整
Lapis-LJA 779ba00
Merge branch 'master' into fix/lapis_gravity_extends
Lapis-LJA 3aae510
Merge branch 'master' into fix/lapis_gravity_extends
Lapis-LJA bf6cbd1
[Artifact 1120, Object 1053] 火炎放射器の範囲の仕様変更に対応
Lapis-LJA 92f305b
[Artifact 1120] 火炎放射器のTickがFloat型になっている問題を修正
Lapis-LJA 5fd57af
killメソッドを追加
Lapis-LJA 18b34bb
[Artifact 1206, Object 1106] トリプルスパークルボムの攻撃処理をhitからkillメソッドに移行
Lapis-LJA b6c2a2c
Merge branch 'master' into fix/lapis_gravity_extends
Lapis-LJA 92e9102
[Object 1110] ヘヴィラヴァボムのtickが短くなっている問題を修正
Lapis-LJA 7cf1103
:adhesive_bandage: コメント部分を修正
haiiro2gou 5f866ef
Merge branch 'master' into fix/lapis_gravity_extends
haiiro2gou 3c00f2f
:adhesive_bandage: マージミスを修正
haiiro2gou File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
Asset/data/asset/functions/artifact/1120.flamethrower/trigger/shoot.mcfunction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| #> asset:artifact/1120.flamethrower/trigger/shoot | ||
| # | ||
| # | ||
| # | ||
| # @within function asset:artifact/1120.flamethrower/trigger/3.main | ||
|
|
||
| #> Private | ||
| # @private | ||
| #declare tag SpreadMarker | ||
|
|
||
| # 前方拡散して召喚 | ||
| summon marker ~ ~ ~ {Tags:["SpreadMarker"]} | ||
| data modify storage lib: Argument.Distance set value 1 | ||
| data modify storage lib: Argument.Spread set value 0.3 | ||
| execute as @e[type=marker,tag=SpreadMarker,distance=..10,sort=nearest,limit=1] rotated as @p[tag=this] run function lib:forward_spreader/circle | ||
|
|
||
| # 召喚 | ||
| data modify storage api: Argument.ID set value 1053 | ||
| data modify storage api: Argument.FieldOverride.Damage set value 112f | ||
| data modify storage api: Argument.FieldOverride.Tick set value 40 | ||
| data modify storage api: Argument.FieldOverride.Motion set value 1f | ||
| execute store result storage api: Argument.FieldOverride.UserID int 1 run scoreboard players get @s UserID | ||
| execute facing entity @e[type=marker,tag=SpreadMarker,sort=nearest,limit=1] eyes run function api:object/summon | ||
|
|
||
| # リセット | ||
| kill @e[type=marker,tag=SpreadMarker,distance=..10] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
Asset/data/asset/functions/object/0005.abstract_gravity_projectile/kill/.mcfunction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| #> asset:object/0005.abstract_gravity_projectile/kill/ | ||
| # | ||
| # 継承先などから実行される処理 | ||
| # | ||
| # @within asset:object/alias/5/kill | ||
|
|
||
| # 雪玉kill | ||
| execute on vehicle run kill @s | ||
|
|
||
| # kill | ||
| kill @s |
8 changes: 8 additions & 0 deletions
8
Asset/data/asset/functions/object/0005.abstract_gravity_projectile/range_over/.mcfunction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| #> asset:object/0005.abstract_gravity_projectile/range_over/ | ||
| # | ||
| # 射程限界に到達した際の処理 デフォルトはkillメソッドを直接呼び出す | ||
| # | ||
| # @within asset:object/alias/5/range_over | ||
|
|
||
| # killメソッド呼び出し | ||
| function asset:object/call.m {method:"kill"} | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
Asset/data/asset/functions/object/1002.malleus_maleficarum/hit/.mcfunction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| #> asset:object/1002.malleus_maleficarum/hit/ | ||
| # | ||
| # 継承先などから実行される処理 | ||
| # | ||
| # @within asset:object/alias/1002/hit | ||
|
|
||
| # super | ||
| function asset:object/super.method | ||
|
|
||
| # 魔女化 | ||
| execute positioned ~-1 ~-1 ~-1 as @e[type=#lib:living_without_player,type=!witch,tag=!Uninterferable,tag=!Enemy.Boss,tag=!Uninterferable,dx=1,dy=1,dz=1,sort=random,limit=1] at @s run function asset:object/1002.malleus_maleficarum/hit/witchification |
4 changes: 2 additions & 2 deletions
4
...aleficarum/tick/witchification.mcfunction → ...maleficarum/hit/witchification.mcfunction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 0 additions & 12 deletions
12
Asset/data/asset/functions/object/1002.malleus_maleficarum/init/.mcfunction
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 0 additions & 12 deletions
12
Asset/data/asset/functions/object/1002.malleus_maleficarum/tick/hit.mcfunction
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
....grand_flame/tick/vfx/landing/.mcfunction → ...ject/1041.grand_flame/hit/vfx/.mcfunction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
Asset/data/asset/functions/object/1041.grand_flame/hit/vfx/random.m.mcfunction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| #> asset:object/1041.grand_flame/hit/vfx/random.m | ||
| # | ||
| # @input args: | ||
| # Yaw : float | ||
| # Pitch : float | ||
| # @within function asset:object/1041.grand_flame/hit/ | ||
|
|
||
| # マクロで回転し実行 | ||
| $execute rotated $(Yaw) $(Pitch) run function asset:object/1041.grand_flame/hit/vfx/random |
4 changes: 2 additions & 2 deletions
4
..._flame/tick/vfx/landing/random.mcfunction → ...041.grand_flame/hit/vfx/random.mcfunction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 0 additions & 9 deletions
9
Asset/data/asset/functions/object/1041.grand_flame/init/.mcfunction
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 0 additions & 11 deletions
11
Asset/data/asset/functions/object/1041.grand_flame/summon/.mcfunction
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
Asset/data/asset/functions/object/1041.grand_flame/summon/m.mcfunction
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...41.grand_flame/tick/vfx/flying.mcfunction → ...ject/1041.grand_flame/tick/vfx.mcfunction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| #> asset:object/1041.grand_flame/tick/vfx/flying | ||
| #> asset:object/1041.grand_flame/tick/vfx | ||
| # | ||
| # | ||
| # | ||
|
|
||
9 changes: 0 additions & 9 deletions
9
Asset/data/asset/functions/object/1041.grand_flame/tick/vfx/landing/random.m.mcfunction
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
Asset/data/asset/functions/object/1053.flamethrower_ball/_index.d.mcfunction
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.