mars-xxl/config/elements.json

153 lines
3.4 KiB
JSON

{
"elements": [
{
"id": "red",
"name": "红色方块",
"type": "basic",
"imagePath": "assets/elements/red.png",
"color": "#ff4444",
"score": 10,
"animations": {
"idle": "red_idle",
"match": "red_match",
"destroy": "red_destroy"
},
"sounds": {
"match": "match.mp3",
"destroy": "destroy.mp3"
}
},
{
"id": "blue",
"name": "蓝色方块",
"type": "basic",
"imagePath": "assets/elements/blue.png",
"color": "#4444ff",
"score": 10,
"animations": {
"idle": "blue_idle",
"match": "blue_match",
"destroy": "blue_destroy"
},
"sounds": {
"match": "match.mp3",
"destroy": "destroy.mp3"
}
},
{
"id": "green",
"name": "绿色方块",
"type": "basic",
"imagePath": "assets/elements/green.png",
"color": "#44ff44",
"score": 10,
"animations": {
"idle": "green_idle",
"match": "green_match",
"destroy": "green_destroy"
},
"sounds": {
"match": "match.mp3",
"destroy": "destroy.mp3"
}
},
{
"id": "yellow",
"name": "黄色方块",
"type": "basic",
"imagePath": "assets/elements/yellow.png",
"color": "#ffff44",
"score": 10,
"animations": {
"idle": "yellow_idle",
"match": "yellow_match",
"destroy": "yellow_destroy"
},
"sounds": {
"match": "match.mp3",
"destroy": "destroy.mp3"
}
},
{
"id": "purple",
"name": "紫色方块",
"type": "basic",
"imagePath": "assets/elements/purple.png",
"color": "#ff44ff",
"score": 10,
"animations": {
"idle": "purple_idle",
"match": "purple_match",
"destroy": "purple_destroy"
},
"sounds": {
"match": "match.mp3",
"destroy": "destroy.mp3"
}
},
{
"id": "orange",
"name": "橙色方块",
"type": "basic",
"imagePath": "assets/elements/orange.png",
"color": "#ff8844",
"score": 10,
"animations": {
"idle": "orange_idle",
"match": "orange_match",
"destroy": "orange_destroy"
},
"sounds": {
"match": "match.mp3",
"destroy": "destroy.mp3"
}
}
],
"specialElements": [
{
"id": "bomb",
"name": "炸弹",
"type": "special",
"imagePath": "assets/elements/bomb.png",
"effect": "explode_3x3",
"score": 50,
"animations": {
"idle": "bomb_idle",
"explode": "bomb_explode"
},
"sounds": {
"explode": "bomb.mp3"
}
},
{
"id": "line_horizontal",
"name": "横向消除",
"type": "special",
"imagePath": "assets/elements/line_h.png",
"effect": "clear_row",
"score": 30,
"animations": {
"idle": "line_h_idle",
"activate": "line_h_activate"
},
"sounds": {
"activate": "line.mp3"
}
},
{
"id": "line_vertical",
"name": "纵向消除",
"type": "special",
"imagePath": "assets/elements/line_v.png",
"effect": "clear_column",
"score": 30,
"animations": {
"idle": "line_v_idle",
"activate": "line_v_activate"
},
"sounds": {
"activate": "line.mp3"
}
}
]
}