配置全部转移luban

This commit is contained in:
2025-08-12 16:58:02 +08:00
parent 75cc583a44
commit 83370bd0ef
47 changed files with 423 additions and 4340 deletions
+6 -64
View File
@@ -1,65 +1,7 @@
export namespace Config18x
{
export enum PriceType
{
Free = 'free',
Try = 'try',
Coin = 'coin',
}
export enum ImageState
{
Release,
Lock,
UnKnown
}
export enum PicType
{
RemoteUrlImage,
RemoteUrlGif,
LocalGif,
LocalImage
}
export enum Category
{
shunv = 1001,
lama = 1002
}
export namespace Config18x {
export enum ImageState {
Release,
Lock,
UnKnown,
}
}
export interface PicInfo
{
picType: Config18x.PicType;
url: string;
imageState: Config18x.ImageState;
}
export interface Theme
{
themeId:number;
name:string;
isRelease:boolean;
pic:PicInfo;
}
export interface GirlInfo
{
id:number;
name:string;
age:number;
category:Config18x.Category;
tag:string[];
priceType:Config18x.PriceType;
pic:PicInfo;
starCount:number;
}
export interface GirlDetailInfo
{
baseInfo:GirlInfo;
detailDesc:string;
pics:PicInfo[];
}
@@ -1,144 +0,0 @@
import {Config18x, GirlDetailInfo, GirlInfo, Theme} from "db://assets/Scripts/Main/Config/Config18x";
import Category = Config18x.Category;
import PicType = Config18x.PicType;
import ImageState = Config18x.ImageState;
export interface Character {
id: number;
name: string;
age: number;
description: string;
}
export const GirlsData: GirlInfo[] =
[
{
id: 10001,
name: "Anaya Kapoor",
age: 29,
category: Category.shunv,
tag: ["Hot", "Horny"],
priceType: Config18x.PriceType.Free,
pic: {picType: PicType.LocalImage, url: "Image/Girls/10001/Avatar/10001_avatar", imageState: ImageState.Release},
starCount: 5
},
{
id: 10002,
name: "Meher Joshi",
age: 26,
category: Category.shunv,
tag: ["Earth-tone linens", "handcrafted jewelry"],
priceType: Config18x.PriceType.Try,
pic: {picType: PicType.LocalImage, url: "Image/Girls/10002/Avatar/10002_avatar", imageState: ImageState.Release},
starCount: 4
},
{
id: 10003,
name: "Sana Reddy",
age: 29,
category: Category.shunv,
tag: [" Singer-Songwriter", "Dancer"],
priceType: Config18x.PriceType.Coin,
pic: {picType: PicType.LocalImage, url: "Image/Girls/10003/Avatar/10003_avatar", imageState: ImageState.Release},
starCount: 3
}
]
export const girlDetailInfo:GirlDetailInfo[] = [
{
baseInfo:GirlsData[0],
detailDesc:"🌸 Hi, I'm Anaya Kapoor, a 24-year-old dreamer from Mumbai. I blend tradition with trend — from vibrant saris to sleek streetwear, fashion is how I express my story.\n" +
"Coffee lover ☕ | Dancer 💃 | Proud Desi ✨\n" +
"Be your own kind of beautiful.",
pics:[
{picType:PicType.LocalGif,url:"Image/Girls/10001/DescImg/10001_video",imageState:ImageState.Release},
{picType:PicType.LocalImage,url:"Image/Girls/10001/DetailImg/10001_1",imageState:ImageState.Release},
{picType:PicType.LocalImage,url:"Image/Girls/10001/DetailImg/10001_2",imageState:ImageState.Lock},
{picType:PicType.LocalImage,url:"Image/Girls/10001/DetailImg/10001_3",imageState:ImageState.UnKnown}
]
},
{
baseInfo:GirlsData[1],
detailDesc:"Im Meher Joshi, a 26-year-old architect passionate about green " +
"design and timeless spaces. Whether Im sketching under a banyan tree or supervising a modern villa in Goa," +
" I find inspiration in nature and culture.",
pics:[{picType:PicType.LocalGif,url:"Image/Girls/10002/DescImg/10002_chatBg",imageState:ImageState.Release},
{picType:PicType.LocalImage,url:"Image/Girls/10002/DetailImg/10002_1",imageState:ImageState.Release},
{picType:PicType.LocalImage,url:"Image/Girls/10002/DetailImg/10002_2",imageState:ImageState.Release},
{picType:PicType.LocalImage,url:"Image/Girls/10002/DetailImg/10002_3",imageState:ImageState.Release}]
},
{
baseInfo:GirlsData[2],
detailDesc:"I'm Sana Reddy, Indias rising pop rebel. I sing in Telugu, " +
"Hindi, and English — because music has no language, just energy. " +
"Off stage, Im chill and goofy. On stage? Im a storm.",
pics:[{picType:PicType.LocalGif,url:"Image/Girls/10003/DescImg/10003_chatBg",imageState:ImageState.Release},
{picType:PicType.LocalImage,url:"Image/Girls/10003/DetailImg/10003_1",imageState:ImageState.Release},
{picType:PicType.LocalImage,url:"Image/Girls/10003/DetailImg/10003_2",imageState:ImageState.Release},
{picType:PicType.LocalImage,url:"Image/Girls/10003/DetailImg/10003_3",imageState:ImageState.Release}]
},
]
export const themes: Theme[] = [
{
themeId: 1001,
name: "熟女",
isRelease: true,
pic: {
picType: PicType.LocalImage,
imageState: ImageState.Release,
url: "Image/Theme/1001"
}
},
{
themeId: 1002,
name: "18岁",
isRelease: false,
pic: {
picType: PicType.LocalImage,
imageState: ImageState.Lock,
url: "Image/Theme/1002"
}
},
{
themeId: 1003,
name: "辣妈",
isRelease: false,
pic: {
picType: PicType.LocalImage,
imageState: ImageState.Lock,
url: "Image/Theme/1003"
}
},
{
themeId: 1004,
name: "捆绑",
isRelease: false,
pic: {
picType: PicType.LocalImage,
imageState: ImageState.Lock,
url: "Image/Theme/1004"
}
},
{
themeId: 1005,
name: "公众野战",
isRelease: false,
pic: {
picType: PicType.LocalImage,
imageState: ImageState.Lock,
url: "Image/Theme/1005"
}
},
{
themeId: 1006,
name: "卡通",
isRelease: false,
pic: {
picType: PicType.LocalImage,
imageState: ImageState.Lock,
url: "Image/Theme/1006"
}
}
]
@@ -1,9 +0,0 @@
{
"ver": "4.0.24",
"importer": "typescript",
"imported": true,
"uuid": "5a025fba-6622-4b6d-9706-b09123b7c2ce",
"files": [],
"subMetas": {},
"userData": {}
}