添加配置表

This commit is contained in:
flswld
2022-11-30 00:00:20 +08:00
parent f70a890338
commit d7f3f3b866
33382 changed files with 8476601 additions and 0 deletions
@@ -0,0 +1,81 @@
[
/*
*
* ******
* ////
* "Temp_" / "Test_" 使
* 便线 ok
*/
{
"Default":
{
"$type": "ConfigAbility",
"abilityName": "Test_OreIron_Interact",
"onAdded":
[
{
"$type": "AttachModifier",
"modifierName": "ElementRockModifier",
"target": "Self",
},
{
"$type" : "AddGlobalValue",
"key" : "_HIT_TIMES_LEFT",
"value" : 1,
"useLimitRange" : true,
"maxValue" : 1,
"minValue" : 0,
},
],
"modifiers":
{
"ElementRockModifier":
{
"onBeingHit":
[
{
"$type": "TriggerGadgetInteractive",
"predicates" :
[
{
"$type": "ByHitElement",
"element": "Fire",
},
{
"$type": "ByTargetGlobalValue",
"key": "_HIT_TIMES_LEFT",
"value": 1,
"compareType": "Equal",
},
],
},
{
"$type" : "AddGlobalValue",
"key" : "_HIT_TIMES_LEFT",
"value" : -1,
"useLimitRange" : true,
"maxValue" : 3,
"minValue" : 0,
"predicates" :
[
{
"$type": "ByHitElement",
"element": "Fire",
},
{
"$type": "ByTargetGlobalValue",
"key": "_HIT_TIMES_LEFT",
"value": 0,
"compareType": "MoreThan",
},
],
},
],
"onRemoved":
[
],
},
},
},
},
]