-
Notifications
You must be signed in to change notification settings - Fork 0
/
rulesets.ts
20 lines (19 loc) · 928 Bytes
/
rulesets.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
export const Rulesets: {[k: string]: ModdedFormatData} = {
standard: {
effectType: 'ValidatorRule',
name: 'Standard',
ruleset: ['Obtainable', 'Desync Clause Mod', 'Sleep Clause Mod', 'Freeze Clause Mod', 'Species Clause', 'OHKO Clause', 'Evasion Moves Clause', 'Endless Battle Clause', 'HP Percentage Mod', 'Cancel Mod'],
banlist: ['Dig', 'Fly'],
},
welcomemessage: {
effectType: 'Rule',
name: 'Welcome Message',
desc: 'https://www.youtube.com/channel/UCvVihnVokWwZ4NpeMsBk48A',
onBegin() {
this.add('-message', "Welcome to RBY Expansion Pack!");
this.add('-message', "This is a Solomod that adds things like scrapped content and crossgen evos to RBY OU.");
this.add('-message', "For more information, please check this spreadsheet - ");
this.add('-message', "https://docs.google.com/spreadsheets/d/1AVXdy6hSW_TtPr0HSGW9JT4m0bstLlPXnH3ccl-rQ20/edit?usp=sharing");
},
},
};